summaryrefslogtreecommitdiff
path: root/doc/neps
diff options
context:
space:
mode:
authorMark Wiebe <mwiebe@enthought.com>2011-07-07 15:16:37 -0500
committerCharles Harris <charlesr.harris@gmail.com>2011-07-08 19:38:24 -0600
commitb4143056187e079c97df6956e86d900a299b4831 (patch)
treec9950097967edf3230afdad83ac8b2f651f7e835 /doc/neps
parentcd92423d1f11afead06f534c9044607eabfe11f4 (diff)
downloadnumpy-b4143056187e079c97df6956e86d900a299b4831.tar.gz
ENH: nditer: Add the per-operand masked iteration flags
Diffstat (limited to 'doc/neps')
-rw-r--r--doc/neps/missing-data.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/neps/missing-data.rst b/doc/neps/missing-data.rst
index 478d019a5..de00cbb74 100644
--- a/doc/neps/missing-data.rst
+++ b/doc/neps/missing-data.rst
@@ -738,6 +738,10 @@ NPY_ITER_WRITEMASKED
to know the mask ahead of time, and copying everything into
the buffer will never destroy data.
+ The code using the iterator should only write to values which
+ are not masked by the mask specified, otherwise the result will
+ be different depending on whether buffering is enabled or not.
+
NPY_ITER_ARRAYMASK
Indicates that this array is a boolean mask to use when copying
any WRITEMASKED argument from a buffer back to the array. There