summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/allocation.rst
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@in-nomine.org>2009-04-27 08:07:12 (GMT)
committerJeroen Ruigrok van der Werven <asmodai@in-nomine.org>2009-04-27 08:07:12 (GMT)
commitb70ccc348bc4ea166f7538dd21b598dd5f545abe (patch)
tree3de8e56332170d2e2ca528d6a299ea24d2cfb64b /Doc/c-api/allocation.rst
parent7b6ca4ab7f8ff5dd81fd64ce92b91f6627929ea4 (diff)
downloadcpython-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/allocation.rst')
-rw-r--r--Doc/c-api/allocation.rst12
1 files changed, 0 insertions, 12 deletions
diff --git a/Doc/c-api/allocation.rst b/Doc/c-api/allocation.rst
index 32397b3..b64381b 100644
--- a/Doc/c-api/allocation.rst
+++ b/Doc/c-api/allocation.rst
@@ -11,10 +11,6 @@ Allocating Objects on the Heap
.. cfunction:: PyVarObject* _PyObject_NewVar(PyTypeObject *type, Py_ssize_t size)
- .. versionchanged:: 2.5
- This function used an :ctype:`int` type for *size*. This might require
- changes in your code for properly supporting 64-bit systems.
-
.. cfunction:: PyObject* PyObject_Init(PyObject *op, PyTypeObject *type)
@@ -30,10 +26,6 @@ Allocating Objects on the Heap
This does everything :cfunc:`PyObject_Init` does, and also initializes the
length information for a variable-size object.
- .. versionchanged:: 2.5
- This function used an :ctype:`int` type for *size*. This might require
- changes in your code for properly supporting 64-bit systems.
-
.. cfunction:: TYPE* PyObject_New(TYPE, PyTypeObject *type)
@@ -55,10 +47,6 @@ Allocating Objects on the Heap
fields into the same allocation decreases the number of allocations,
improving the memory management efficiency.
- .. versionchanged:: 2.5
- This function used an :ctype:`int` type for *size*. This might require
- changes in your code for properly supporting 64-bit systems.
-
.. cfunction:: void PyObject_Del(PyObject *op)