__init__.py 242 B

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