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

10 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2023-12-12 06:31 +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 'get_index_dtype', 

20 'getdata', 

21 'getdtype', 

22 'isshape', 

23 'isspmatrix', 

24 'isspmatrix_bsr', 

25 'spmatrix', 

26 'to_native', 

27 'upcast', 

28 'warn', 

29] 

30 

31 

32def __dir__(): 

33 return __all__ 

34 

35 

36def __getattr__(name): 

37 if name not in __all__: 

38 raise AttributeError( 

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

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

41 

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

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

44 category=DeprecationWarning, stacklevel=2) 

45 

46 return getattr(_bsr, name)