spline.py 536 B

123456789101112131415161718
  1. # This file is not meant for public use and will be removed in the future
  2. # versions of SciPy. Use the `scipy.signal` namespace for importing the
  3. # functions included below.
  4. from scipy._lib.deprecation import _sub_module_deprecation
  5. __all__ = ['sepfir2d'] # noqa: F822
  6. def __dir__():
  7. return __all__
  8. def __getattr__(name):
  9. return _sub_module_deprecation(sub_package="signal", module="spline",
  10. private_modules=["_spline"], all=__all__,
  11. attribute=name)