Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/mingw32/Python27/Lib/site-packages/numpy/matrixlib/__init__.py @ 87:2a2c65a20a8b
Add Python libs and headers
author | Chris Cannam |
---|---|
date | Wed, 25 Feb 2015 14:05:22 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
86:413a9d26189e | 87:2a2c65a20a8b |
---|---|
1 """Sub-package containing the matrix class and related functions. | |
2 | |
3 """ | |
4 from __future__ import division, absolute_import, print_function | |
5 | |
6 from .defmatrix import * | |
7 | |
8 __all__ = defmatrix.__all__ | |
9 | |
10 from numpy.testing import Tester | |
11 test = Tester().test | |
12 bench = Tester().bench |