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/veryhigh.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/veryhigh.rst')
-rw-r--r-- | Doc/c-api/veryhigh.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/c-api/veryhigh.rst b/Doc/c-api/veryhigh.rst index 9f21b89..f7ed4c7 100644 --- a/Doc/c-api/veryhigh.rst +++ b/Doc/c-api/veryhigh.rst @@ -322,6 +322,10 @@ the same library that the Python runtime is using. it causes an exception to immediately be thrown; this is used for the :meth:`~generator.throw` methods of generator objects. + .. versionchanged:: 3.4 + This function now includes a debug assertion to help ensure that it + does not silently discard an active exception. + .. c:function:: int PyEval_MergeCompilerFlags(PyCompilerFlags *cf) |