diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2010-12-21 18:10:55 -0800 |
---|---|---|
committer | Mark Wiebe <mwwiebe@gmail.com> | 2010-12-21 18:10:55 -0800 |
commit | ac647ffdecab5d4c4019d88db6e48b45726e6507 (patch) | |
tree | 9cf2d315f75572ca6378997ec5399f9a3829d963 /doc | |
parent | 44ba4e3501d6c8438ee2132dc917fc22663bf38b (diff) | |
download | numpy-ac647ffdecab5d4c4019d88db6e48b45726e6507.tar.gz |
NEP: iter: added table of contents
Diffstat (limited to 'doc')
-rw-r--r-- | doc/neps/new-iterator-ufunc.rst | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/neps/new-iterator-ufunc.rst b/doc/neps/new-iterator-ufunc.rst index f5e4f7883..0ea96cb42 100644 --- a/doc/neps/new-iterator-ufunc.rst +++ b/doc/neps/new-iterator-ufunc.rst @@ -3,6 +3,12 @@ :Content-Type: text/x-rst :Created: 25-Nov-2010 +***************** +Table of Contents +***************** + +.. contents:: + ******** Abstract ******** @@ -1261,7 +1267,7 @@ First, here is the definition of the ``luf`` function.:: casting='safe', buffersize=8192) c = np.empty(...) - luf(lambda i,j:i+j, a, b, order='K', + luf(lambda i,j:i+j, a, b, out=c, order='K', casting='safe', buffersize=8192) """ |