diff options
author | Ross Barnowski <rossbar@berkeley.edu> | 2020-02-29 11:06:25 -0800 |
---|---|---|
committer | Ross Barnowski <rossbar@berkeley.edu> | 2020-03-01 10:27:35 -0800 |
commit | 2c61a7fcdb51540aa8908a8ae37678e4c92d8bd9 (patch) | |
tree | 3ae0f85b72b7ed06b27efb0da0f29c96a12d75e1 | |
parent | cea994fac86dbc5af7bee3f15fc5b475a99163fa (diff) | |
download | numpy-2c61a7fcdb51540aa8908a8ae37678e4c92d8bd9.tar.gz |
MAINT: Added comment pointing FIXME to relevant PR.
Clarifies a FIXME comment in numpy/__init__.py by referencing
relevant discussion in issue tracker.
Closes #15668.
-rw-r--r-- | numpy/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index c5c58b020..186e75c15 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -142,6 +142,7 @@ else: from . import compat from . import lib # FIXME: why have numpy.lib if everything is imported here?? + # See gh-14454 for discussion. from .lib import * from . import linalg |