diff options
author | Seth Troisi <sethtroisi@google.com> | 2020-01-21 16:11:33 -0800 |
---|---|---|
committer | Seth Troisi <sethtroisi@google.com> | 2020-01-23 15:14:29 -0800 |
commit | 2dadfe8c6158b3f4ccdac3d044a2b6b8b91397eb (patch) | |
tree | e76ce2e48796977b4ba92a12034d635a44db78c5 /numpy/matlib.py | |
parent | c61e667c90f7aa80c41fcfa3dd098832fbfe7139 (diff) | |
download | numpy-2dadfe8c6158b3f4ccdac3d044a2b6b8b91397eb.tar.gz |
DOC: Describe matlib.py funky namespace
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__ |