diff options
author | Kirill Smelkov <kirr@nexedi.com> | 2014-07-17 23:10:17 +0400 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-07-27 20:04:44 +0200 |
commit | b72346e05c91fdea6d61c1f3f9bb712c650e0778 (patch) | |
tree | 3596fc71228a539743003d4edf3f78cede7c719f /doc | |
parent | 70e88caedfc9e2c901b986e62dd6b92970fb9e54 (diff) | |
download | numpy-b72346e05c91fdea6d61c1f3f9bb712c650e0778.tar.gz |
DOC: NPY_ITEM_LISTPICKLE -> NPY_LIST_PICKLE
There is no NPY_ITEM_LISTPICKLE - it was NPY_LIST_PICKLE from the
beginning - from c3551579 (Expand usage of hasobject to be a flag-like
entity keeping track of how the data-type should be used.)
The documentation in the same rst file even uses the correct identifier
later, so it was just a typo/thinko.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/reference/c-api.types-and-structures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/c-api.types-and-structures.rst b/doc/source/reference/c-api.types-and-structures.rst index f1e216a5c..66425cd61 100644 --- a/doc/source/reference/c-api.types-and-structures.rst +++ b/doc/source/reference/c-api.types-and-structures.rst @@ -244,7 +244,7 @@ PyArrayDescr_Type Indicates that items of this data-type must be reference counted (using :cfunc:`Py_INCREF` and :cfunc:`Py_DECREF` ). - .. cvar:: NPY_ITEM_LISTPICKLE + .. cvar:: NPY_LIST_PICKLE Indicates arrays of this data-type must be converted to a list before pickling. |