[Python-checkins] cpython: write versionadded

benjamin.peterson python-checkins at python.org
Mon Feb 20 15:03:00 CET 2012


http://hg.python.org/cpython/rev/9a156474d678
changeset:   75056:9a156474d678
parent:      75054:857cc070ef75
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Feb 20 08:48:25 2012 -0500
summary:
  write versionadded

files:
  Doc/c-api/object.rst |  4 ++++
  1 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst
--- a/Doc/c-api/object.rst
+++ b/Doc/c-api/object.rst
@@ -106,12 +106,16 @@
    A generic implementation for the getter of a ``__dict__`` descriptor. It
    creates the dictionary if necessary.
 
+   .. versionadded:: 3.3
+
 
 .. c:function:: int PyType_GenericSetDict(PyObject *o, void *context)
 
    A generic implementation for the setter of a ``__dict__`` descriptor. This
    implementation does not allow the dictionary to be deleted.
 
+   .. versionadded:: 3.3
+
 
 .. c:function:: PyObject* PyObject_RichCompare(PyObject *o1, PyObject *o2, int opid)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list