diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-02-09 02:00:01 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-02-09 02:00:01 (GMT) |
commit | c0bc0b46bb4849934a81fe46d057d40fb64d203e (patch) | |
tree | c8447ab66a6838a17f90eeb40259e6bf2063dbcb /Doc/c-api/object.rst | |
parent | 0c3949c963c9f39095f85c5ec24d0f958e915ae9 (diff) | |
download | cpython-c0bc0b46bb4849934a81fe46d057d40fb64d203e.zip cpython-c0bc0b46bb4849934a81fe46d057d40fb64d203e.tar.gz cpython-c0bc0b46bb4849934a81fe46d057d40fb64d203e.tar.bz2 |
Issue #20500: Note other public APIs with the new assertion
Diffstat (limited to 'Doc/c-api/object.rst')
-rw-r--r-- | Doc/c-api/object.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst index 78c385e..ad84301 100644 --- a/Doc/c-api/object.rst +++ b/Doc/c-api/object.rst @@ -149,6 +149,9 @@ Object Protocol representation on success, *NULL* on failure. This is the equivalent of the Python expression ``repr(o)``. Called by the :func:`repr` built-in function. + .. versionchanged:: 3.4 + This function now includes a debug assertion to help ensure that it + does not silently discard an active exception. .. c:function:: PyObject* PyObject_ASCII(PyObject *o) @@ -171,8 +174,8 @@ Object Protocol and, therefore, by the :func:`print` function. .. versionchanged:: 3.4 - This function now includes a debug assertion that ensures it does not - silently discard an active exception. + This function now includes a debug assertion to help ensure that it + does not silently discard an active exception. .. c:function:: PyObject* PyObject_Bytes(PyObject *o) |