diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-02-09 02:05:13 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-02-09 02:05:13 (GMT) |
commit | 72318b97f6c02e4cea03947df6e30f2457fb9836 (patch) | |
tree | 5f35baa2ee2cd91093516109e2d24c2542e92959 /Doc | |
parent | c0bc0b46bb4849934a81fe46d057d40fb64d203e (diff) | |
download | cpython-72318b97f6c02e4cea03947df6e30f2457fb9836.zip cpython-72318b97f6c02e4cea03947df6e30f2457fb9836.tar.gz cpython-72318b97f6c02e4cea03947df6e30f2457fb9836.tar.bz2 |
Issue #20500: clarify that invocation may be indirect
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 720ea6e..dcd9284 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -1716,8 +1716,9 @@ Changes in the C API because it has already been saved locally with :c:func:`PyErr_Fetch` or is being deliberately replaced with a different exception), an explicit :c:func:`PyErr_Clear` call will be needed to avoid triggering the - assertion when running against a version of Python that is compiled with - assertions enabled. + assertion when invoking these operations (directly or indirectly) and + running against a version of Python that is compiled with assertions + enabled. * :c:func:`PyErr_SetImportError` now sets :exc:`TypeError` when its **msg** argument is not set. Previously only ``NULL`` was returned with no exception |