[Python-checkins] r71934 - python/trunk/Doc/c-api/typeobj.rst

jeroen.ruigrok python-checkins at python.org
Sat Apr 25 23:02:34 CEST 2009


Author: jeroen.ruigrok
Date: Sat Apr 25 23:02:34 2009
New Revision: 71934

Log:
Issue #4129: field changed from int to Py_ssize_t.


Modified:
   python/trunk/Doc/c-api/typeobj.rst

Modified: python/trunk/Doc/c-api/typeobj.rst
==============================================================================
--- python/trunk/Doc/c-api/typeobj.rst	(original)
+++ python/trunk/Doc/c-api/typeobj.rst	Sat Apr 25 23:02:34 2009
@@ -64,6 +64,10 @@
 
    This field is not inherited by subtypes.
 
+   .. versionchanged:: 2.5
+      This field used to be an :ctype:`int` type. This might require changes
+      in your code for properly supporting 64-bit systems.
+
 
 .. cmember:: PyTypeObject* PyObject.ob_type
 


More information about the Python-checkins mailing list