diff options
author | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2009-04-27 08:07:12 (GMT) |
---|---|---|
committer | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2009-04-27 08:07:12 (GMT) |
commit | b70ccc348bc4ea166f7538dd21b598dd5f545abe (patch) | |
tree | 3de8e56332170d2e2ca528d6a299ea24d2cfb64b /Doc/c-api/slice.rst | |
parent | 7b6ca4ab7f8ff5dd81fd64ce92b91f6627929ea4 (diff) | |
download | cpython-b70ccc348bc4ea166f7538dd21b598dd5f545abe.zip cpython-b70ccc348bc4ea166f7538dd21b598dd5f545abe.tar.gz cpython-b70ccc348bc4ea166f7538dd21b598dd5f545abe.tar.bz2 |
After discussing some more with Georg, do no migrate versionchanged:: 2.5 to
this branch. While I am here, also get rid of other versionchanged:: 2.x
constructs, as discussed.
Diffstat (limited to 'Doc/c-api/slice.rst')
-rw-r--r-- | Doc/c-api/slice.rst | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Doc/c-api/slice.rst b/Doc/c-api/slice.rst index 68c0e93..f8f2a44 100644 --- a/Doc/c-api/slice.rst +++ b/Doc/c-api/slice.rst @@ -40,11 +40,6 @@ Slice Objects You probably do not want to use this function. - .. versionchanged:: 2.5 - This function used an :ctype:`int` type for *length* and an - :ctype:`int *` type for *start*, *stop*, and *step*. This might require - changes in your code for properly supporting 64-bit systems. - .. cfunction:: int PySlice_GetIndicesEx(PySliceObject *slice, Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, Py_ssize_t *slicelength) @@ -56,8 +51,3 @@ Slice Objects Returns 0 on success and -1 on error with exception set. - .. versionchanged:: 2.5 - This function used an :ctype:`int` type for *length* and an - :ctype:`int *` type for *start*, *stop*, *step*, and *slicelength*. This - might require changes in your code for properly supporting 64-bit - systems. |