Coverage for /usr/lib/python3/dist-packages/numpy/_distributor_init.py: 100%
4 statements
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-14 15:55 +0200
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-14 15:55 +0200
1""" Distributor init file
3Distributors: you can add custom code here to support particular distributions
4of numpy.
6For example, this is a good place to put any BLAS/LAPACK initialization code.
8The numpy standard source distribution will not put code in this file, so you
9can safely replace this file with your own version.
10"""
12try:
13 from . import _distributor_init_local
14except ImportError:
15 pass