__init__.py 353 B

1234567891011121314
  1. """
  2. Module containing private utility functions
  3. ===========================================
  4. The ``scipy._lib`` namespace is empty (for now). Tests for all
  5. utilities in submodules of ``_lib`` can be run with::
  6. from scipy import _lib
  7. _lib.test()
  8. """
  9. from scipy._lib._testutils import PytestTester
  10. test = PytestTester(__name__)
  11. del PytestTester