Chris@87: """Sub-package containing the matrix class and related functions. Chris@87: Chris@87: """ Chris@87: from __future__ import division, absolute_import, print_function Chris@87: Chris@87: from .defmatrix import * Chris@87: Chris@87: __all__ = defmatrix.__all__ Chris@87: Chris@87: from numpy.testing import Tester Chris@87: test = Tester().test Chris@87: bench = Tester().bench