summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2020-03-31 16:38:09 +0100
committerGitHub <noreply@github.com>2020-03-31 16:38:09 +0100
commit5d8bcae56a337d21d7bf60d042c7dff32d91b451 (patch)
treefd6645c4e167e2d1ce2ae005e66b916cc68bb4bb
parentf0a74b2d4e50a1b4f9d9189c6b2e31b920913a8b (diff)
parent7a8843a82661d1dab157f0300c7e89ca709c5fe6 (diff)
downloadnumpy-5d8bcae56a337d21d7bf60d042c7dff32d91b451.tar.gz
Merge pull request #15877 from eric-wieser/add-nditer-signature
DOC: Add missing signature from nditer docstring
-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 253ff64b0..68902d25a 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>`.