Add a What's New entry for bpo-35459. (GH-12706)

This commit is contained in:
Serhiy Storchaka 2019-04-08 14:34:04 +03:00 committed by GitHub
parent f4efa312d1
commit 7a0630c530
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -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
-------------------------