diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2011-03-11 12:03:11 -0800 |
---|---|---|
committer | Mark Wiebe <mwwiebe@gmail.com> | 2011-03-11 12:03:11 -0800 |
commit | 5289230a0008e27c89c2427873928ceb1a54264f (patch) | |
tree | 28f29f23a8f04289ef00d37f232f54211ccc7070 /doc/source/reference/c-api.array.rst | |
parent | f8c38cb088c9478416f5c99ade68342dcb3db985 (diff) | |
download | numpy-5289230a0008e27c89c2427873928ceb1a54264f.tar.gz |
BUG: For compatibility with 1.5, revert to permitting limited broadcasting of the assignment output
This change got Travis's -10 veto for 1.6.
An unfortunate consequence of reverting this is that some of the broadcasting
error messages get worse, but they're still no worse than in 1.5.
Diffstat (limited to 'doc/source/reference/c-api.array.rst')
-rw-r--r-- | doc/source/reference/c-api.array.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/c-api.array.rst b/doc/source/reference/c-api.array.rst index 62746eb49..bc108eb8e 100644 --- a/doc/source/reference/c-api.array.rst +++ b/doc/source/reference/c-api.array.rst @@ -1901,7 +1901,7 @@ Array Functions .. cfunction:: PyObject* PyArray_EinsteinSum(char* subscripts, npy_intp nop, PyArrayObject** op_in, PyArray_Descr* dtype, NPY_ORDER order, NPY_CASTING casting, PyArrayObject* out) - .. versionadded:: 1.6 + .. versionadded:: 1.6 Applies the einstein summation convention to the array operands provided, returning a new array or placing the result in *out*. |