[Python-checkins] r87173 - python/branches/py3k/Doc/c-api/slice.rst

martin.v.loewis python-checkins at python.org
Sat Dec 11 20:22:05 CET 2010


Author: martin.v.loewis
Date: Sat Dec 11 20:22:04 2010
New Revision: 87173

Log:
Add versionchanged for parameter type changes.


Modified:
   python/branches/py3k/Doc/c-api/slice.rst

Modified: python/branches/py3k/Doc/c-api/slice.rst
==============================================================================
--- python/branches/py3k/Doc/c-api/slice.rst	(original)
+++ python/branches/py3k/Doc/c-api/slice.rst	Sat Dec 11 20:22:04 2010
@@ -38,6 +38,9 @@
 
    You probably do not want to use this function.
 
+   .. versionchanged:: 3.2
+      The parameter type for the *slice* parameter was PySliceObject* before.
+
 
 .. c:function:: int PySlice_GetIndicesEx(PyObject *slice, Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, Py_ssize_t *slicelength)
 
@@ -49,3 +52,5 @@
 
    Returns 0 on success and -1 on error with exception set.
 
+   .. versionchanged:: 3.2
+      The parameter type for the *slice* parameter was PySliceObject* before.


More information about the Python-checkins mailing list