Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/scipy/sparse/bsr.py: 70%

10 statements  

« prev     ^ index     » next       coverage.py v7.3.1, created at 2023-09-23 06:43 +0000

1# This file is not meant for public use and will be removed in SciPy v2.0.0. 

2# Use the `scipy.sparse` namespace for importing the functions 

3# included below. 

4 

5import warnings 

6from . import _bsr 

7 

8 

9__all__ = [ # noqa: F822 

10 'bsr_matmat', 

11 'bsr_matrix', 

12 'bsr_matvec', 

13 'bsr_matvecs', 

14 'bsr_sort_indices', 

15 'bsr_tocsr', 

16 'bsr_transpose', 

17 'check_shape', 

18 'csr_matmat_maxnnz', 

19 'getdata', 

20 'getdtype', 

21 'isshape', 

22 'isspmatrix_bsr', 

23 'spmatrix', 

24 'to_native', 

25 'upcast', 

26 'warn', 

27] 

28 

29 

30def __dir__(): 

31 return __all__ 

32 

33 

34def __getattr__(name): 

35 if name not in __all__: 

36 raise AttributeError( 

37 "scipy.sparse.bsr is deprecated and has no attribute " 

38 f"{name}. Try looking in scipy.sparse instead.") 

39 

40 warnings.warn(f"Please use `{name}` from the `scipy.sparse` namespace, " 

41 "the `scipy.sparse.bsr` namespace is deprecated.", 

42 category=DeprecationWarning, stacklevel=2) 

43 

44 return getattr(_bsr, name)