8000 DEP: add PendingDeprecation to matlib.py funky namespace by sethtroisi · Pull Request #15381 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

DEP: add PendingDeprecation to matlib.py funky namespace #15381

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 27, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
DOC: Describe matlib.py funky namespace
  • Loading branch information
sethtroisi committed Jan 23, 2020
commit 2dadfe8c6158b3f4ccdac3d044a2b6b8b91397eb
4 changes: 3 additions & 1 deletion numpy/matlib.py
Original file line number Diff line number Diff line change
@@ -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__
Expand Down
0