diff options
Diffstat (limited to 'numpy/matlib.py')
-rw-r--r-- | numpy/matlib.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/matlib.py b/numpy/matlib.py index 1f0345be4..5e53f74d9 100644 --- a/numpy/matlib.py +++ b/numpy/matlib.py @@ -1,6 +1,8 @@ import numpy as np from numpy.matrixlib.defmatrix import matrix, asmatrix -# need * as we're copying the numpy namespace (FIXME: this makes little sense) +# Matlib.py contains all functions in the numpy namespace with a few +# replacements. See doc/source/reference/routines.matlib.rst for details. +# Need * as we're copying the numpy namespace. from numpy import * # noqa: F403 __version__ = np.__version__ |