biasedurn.py 431 B

12345678910111213141516
  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__: list[str] = []
  4. def __dir__():
  5. return __all__
  6. def __getattr__(name):
  7. return _sub_module_deprecation(sub_package="stats", module="biasedurn",
  8. private_modules=["_biasedurn"], all=__all__,
  9. attribute=name)