summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2020-03-31 11:12:58 +0100
committerEric Wieser <wieser.eric@gmail.com>2020-03-31 11:12:58 +0100
commit7a8843a82661d1dab157f0300c7e89ca709c5fe6 (patch)
tree3cbb4b697557420f3a47fa0cf538175aaf4d52ba /numpy
parentb3f41eeafd2708a6b519cf3c7ba3576dfa1cc5b3 (diff)
downloadnumpy-7a8843a82661d1dab157f0300c7e89ca709c5fe6.tar.gz
DOC: Add missing signature from nditer docstring
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/_add_newdocs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/_add_newdocs.py b/numpy/core/_add_newdocs.py
index ba5c0fa68..d87a9d9af 100644
--- a/numpy/core/_add_newdocs.py
+++ b/numpy/core/_add_newdocs.py
@@ -152,6 +152,8 @@ add_newdoc('numpy.core', 'flatiter', ('copy',
add_newdoc('numpy.core', 'nditer',
"""
+ nditer(op, flags=None, op_flags=None, op_dtypes=None, order='K', casting='safe', op_axes=None, itershape=(), buffersize=0)
+
Efficient multi-dimensional iterator object to iterate over arrays.
To get started using this object, see the
:ref:`introductory guide to array iteration <arrays.nditer>`.