This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hongweipeng
Recipients ajung, asvetlov, hongweipeng, konstantin danilov, yselivanov
Date 2019-09-05.09:47:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567676870.21.0.402991398874.issue37402@roundup.psfhosted.org>
In-reply-to
Content
According to the provided text.py file. `__exit__` will always execute due to the `with` syntax. It looks like this:
```
def rec():
    try:
        rec()
    except RecursionError:
        rec()

rec()
```
History
Date User Action Args
2019-09-05 09:47:50hongweipengsetrecipients: + hongweipeng, ajung, asvetlov, yselivanov, konstantin danilov
2019-09-05 09:47:50hongweipengsetmessageid: <1567676870.21.0.402991398874.issue37402@roundup.psfhosted.org>
2019-09-05 09:47:50hongweipenglinkissue37402 messages
2019-09-05 09:47:50hongweipengcreate