__init__.py 218 B

12345678910
  1. """Sub-package containing the matrix class and related functions.
  2. """
  3. from .defmatrix import *
  4. __all__ = defmatrix.__all__
  5. from numpy._pytesttester import PytestTester
  6. test = PytestTester(__name__)
  7. del PytestTester