diff options
author | Gagandeep Singh <gdp.1807@gmail.com> | 2021-11-10 14:27:35 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-10 14:27:35 +0530 |
commit | 9f9a34843016faea897cd591a5c4c104fa68c883 (patch) | |
tree | 5eeea7821ec7bd26b2d8b934370fa3238c56bb04 /numpy/_globals.py | |
parent | 37cd05eb4fa732230345785de53722a80c27fc62 (diff) | |
download | numpy-9f9a34843016faea897cd591a5c4c104fa68c883.tar.gz |
Apply suggestions from code review
Co-authored-by: Matti Picus <matti.picus@gmail.com>
Diffstat (limited to 'numpy/_globals.py')
-rw-r--r-- | numpy/_globals.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/_globals.py b/numpy/_globals.py index b17ca1979..41adaae25 100644 --- a/numpy/_globals.py +++ b/numpy/_globals.py @@ -97,7 +97,7 @@ _NoValue = _NoValueType() class _CopyMode(enum.Enum): """ An enumeration for the copy modes supported - by numpy. The following three modes are supported, + by numpy.copy() and numpy.array(). The following three modes are supported, - ALWAYS: This means that a deep copy of the input array will always be taken. |