diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-04-08 11:34:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-08 11:34:04 (GMT) |
commit | 7a0630c530121725136526a88c49589b54da6492 (patch) | |
tree | e083d8da447aaf3110f1409105c4c2df280d39d6 /Doc | |
parent | f4efa312d14bc792f59514c5696e29041e05deca (diff) | |
download | cpython-7a0630c530121725136526a88c49589b54da6492.zip cpython-7a0630c530121725136526a88c49589b54da6492.tar.gz cpython-7a0630c530121725136526a88c49589b54da6492.tar.bz2 |
Add a What's New entry for bpo-35459. (GH-12706)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 4347b3e..29d370c 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -686,6 +686,11 @@ Changes in Python behavior to use equality tests (``==`` and ``!=``) instead. (Contributed by Serhiy Storchaka in :issue:`34850`.) +* The CPython interpreter can swallow exceptions in some circumstances. + In Python 3.8 this happens in less cases. In particular, exceptions + raised when getting the attribute from the type dictionary are no longer + ignored. (Contributed by Serhiy Storchaka in :issue:`35459`.) + Changes in the Python API ------------------------- |