diff options
author | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-06 14:42:08 +0200 |
---|---|---|
committer | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-06 14:42:08 +0200 |
commit | 2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681 (patch) | |
tree | 1a4a81faf9e59d0cabf9cbace9dc967bad60caa1 /numpy/lib/utils.py | |
parent | 773e3cad9a71cb9a7849d8e251fb8a99ab35d06b (diff) | |
download | numpy-2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681.tar.gz |
DOC: change Numpy to NumPy in dosctrings and comments
The strings in error messages were left untouched
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index 133704d13..97b93cace 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -241,10 +241,10 @@ def byte_bounds(a): def who(vardict=None): """ - Print the Numpy arrays in the given dictionary. + Print the NumPy arrays in the given dictionary. If there is no dictionary passed in or `vardict` is None then returns - Numpy arrays in the globals() dictionary (all Numpy arrays in the + NumPy arrays in the globals() dictionary (all NumPy arrays in the namespace). Parameters @@ -646,7 +646,7 @@ def info(object=None, maxwidth=76, output=sys.stdout, toplevel='numpy'): def source(object, output=sys.stdout): """ - Print or write to a file the source code for a Numpy object. + Print or write to a file the source code for a NumPy object. The source code is only returned for objects written in Python. Many functions and classes are defined in C and will therefore not return |