lsoda.py 438 B

123456789101112131415
  1. # This file is not meant for public use and will be removed in SciPy v2.0.0.
  2. from scipy._lib.deprecation import _sub_module_deprecation
  3. __all__ = ['lsoda'] # noqa: F822
  4. def __dir__():
  5. return __all__
  6. def __getattr__(name):
  7. return _sub_module_deprecation(sub_package="integrate", module="lsoda",
  8. private_modules=["_odepack"], all=__all__,
  9. attribute=name)