diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-01 13:01:35 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-01 13:01:35 (GMT) |
commit | b83df8f1b7a3ff3689de4b6d3c36592f1c84492c (patch) | |
tree | df0c3d007ccfa9d6625f53805823a04488230f02 /Include/abstract.h | |
parent | 996b46a09532305cb1a6e19363e0ed86b366eafa (diff) | |
download | cpython-b83df8f1b7a3ff3689de4b6d3c36592f1c84492c.zip cpython-b83df8f1b7a3ff3689de4b6d3c36592f1c84492c.tar.gz cpython-b83df8f1b7a3ff3689de4b6d3c36592f1c84492c.tar.bz2 |
Merged revisions 84391 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84391 | antoine.pitrou | 2010-09-01 14:58:21 +0200 (mer., 01 sept. 2010) | 5 lines
Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() become
_Py_add_one_to_C() and _Py_add_one_to_F(), respectively.
........
Diffstat (limited to 'Include/abstract.h')
-rw-r--r-- | Include/abstract.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index 6a6c94c..e9d1729 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -1233,6 +1233,13 @@ PyAPI_FUNC(int) _PyObject_RealIsInstance(PyObject *inst, PyObject *cls); PyAPI_FUNC(int) _PyObject_RealIsSubclass(PyObject *derived, PyObject *cls); +/* For internal use by buffer API functions */ +PyAPI_FUNC(void) _Py_add_one_to_index_F(int nd, Py_ssize_t *index, + const Py_ssize_t *shape); +PyAPI_FUNC(void) _Py_add_one_to_index_C(int nd, Py_ssize_t *index, + const Py_ssize_t *shape); + + #ifdef __cplusplus } #endif |