__init__.py 420 B

12345678910111213141516
  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 __future__ import division, print_function, absolute_import
  10. from scipy._lib._testutils import PytestTester
  11. test = PytestTester(__name__)
  12. del PytestTester