Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/scipy/_distributor_init.py: 100%
4 statements
« prev ^ index » next coverage.py v7.4.4, created at 2024-04-03 06:39 +0000
« prev ^ index » next coverage.py v7.4.4, created at 2024-04-03 06:39 +0000
1""" Distributor init file
3Distributors: you can replace the contents of this file with your own custom
4code to support particular distributions of SciPy.
6For example, this is a good place to put any checks for hardware requirements
7or BLAS/LAPACK library initialization.
9The SciPy standard source distribution will not put code in this file beyond
10the try-except import of `_distributor_init_local` (which is not part of a
11standard source distribution), so you can safely replace this file with your
12own version.
13"""
15try:
16 from . import _distributor_init_local # noqa: F401
17except ImportError:
18 pass