Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/numpy/_distributor_init.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

5 statements  

1""" Distributor init file 

2 

3Distributors: you can add custom code here to support particular distributions 

4of numpy. 

5 

6For example, this is a good place to put any BLAS/LAPACK initialization code. 

7 

8The numpy standard source distribution will not put code in this file, so you 

9can safely replace this file with your own version. 

10""" 

11 

12try: 

13 from . import _distributor_init_local # noqa: F401 

14except ImportError: 

15 pass