odepack.py 545 B

1234567891011121314151617
  1. # This file is not meant for public use and will be removed in SciPy v2.0.0.
  2. # Use the `scipy.integrate` namespace for importing the functions
  3. # included below.
  4. from scipy._lib.deprecation import _sub_module_deprecation
  5. __all__ = ['odeint', 'ODEintWarning'] # noqa: F822
  6. def __dir__():
  7. return __all__
  8. def __getattr__(name):
  9. return _sub_module_deprecation(sub_package="integrate", module="odepack",
  10. private_modules=["_odepack_py"], all=__all__,
  11. attribute=name)