specfun.py 552 B

123456789101112131415161718192021
  1. # This file is not meant for public use and will be removed in SciPy v2.0.0.
  2. # Use the `scipy.special` namespace for importing the functions
  3. # included below.
  4. from scipy._lib.deprecation import _sub_module_deprecation
  5. # ruff: noqa: F822
  6. __all__ = [
  7. 'lqmn',
  8. 'pbdv'
  9. ]
  10. def __dir__():
  11. return __all__
  12. def __getattr__(name):
  13. return _sub_module_deprecation(sub_package="special", module="specfun",
  14. private_modules=["_basic", "_specfun"], all=__all__,
  15. attribute=name)