Files
python-by-example-150-chall…/venv/lib/python3.6/site-packages/numpy/matrixlib/__init__.py

13 lines
284 B
Python
Raw Normal View History

2019-08-04 15:26:35 +03:00
"""Sub-package containing the matrix class and related functions.
"""
from __future__ import division, absolute_import, print_function
from .defmatrix import *
__all__ = defmatrix.__all__
from numpy._pytesttester import PytestTester
test = PytestTester(__name__)
del PytestTester