diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-05 14:59:57 -0800 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-14 10:14:05 -0800 |
commit | 28f8a85b9ece5773a8ac75ffcd2502fc93612eff (patch) | |
tree | d7845796ffeebe94db18fe05ebfdc898f5d33166 /numpy/lib/utils.py | |
parent | 577a86e30014382c3fed1319379caa8728842543 (diff) | |
download | numpy-28f8a85b9ece5773a8ac75ffcd2502fc93612eff.tar.gz |
MAINT: include recfunctions module
* added lib.recfunctions to refguide
PUBLIC_SUBMODULES, as the doctests
were otherwise not getting executed
* fixed a failing doctest in
recfunctions after above activation
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index 34d089893..5a4cae235 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -150,6 +150,7 @@ def deprecate(*args, **kwargs): Warning: >>> olduint = np.deprecate(np.uint) + DeprecationWarning: `uint64` is deprecated! # may vary >>> olduint(6) 6 |