Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

aaronreidsmith / scipy   python

Repository URL to install this package:

Version: 1.3.3 

/ _lib / __init__.py

"""
Module containing private utility functions
===========================================

The ``scipy._lib`` namespace is empty (for now).  Tests for all
utilities in submodules of ``_lib`` can be run with::

    from scipy import _lib
    _lib.test()

"""
from __future__ import division, print_function, absolute_import

from scipy._lib._testutils import PytestTester
test = PytestTester(__name__)
del PytestTester