Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/scipy/optimize/zeros.py: 0%

6 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-04-03 06:39 +0000

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

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

3# included below. 

4 

5from scipy._lib.deprecation import _sub_module_deprecation 

6 

7 

8__all__ = [ # noqa: F822 

9 'CONVERGED', 

10 'CONVERR', 

11 'INPROGRESS', 

12 'RootResults', 

13 'SIGNERR', 

14 'TOMS748Solver', 

15 'VALUEERR', 

16 'bisect', 

17 'brenth', 

18 'brentq', 

19 'flag_map', 

20 'namedtuple', 

21 'newton', 

22 'operator', 

23 'results_c', 

24 'ridder', 

25 'toms748', 

26] 

27 

28 

29def __dir__(): 

30 return __all__ 

31 

32 

33def __getattr__(name): 

34 return _sub_module_deprecation(sub_package="optimize", module="zeros", 

35 private_modules=["_zeros_py"], all=__all__, 

36 attribute=name)