hongweipeng <hongweichen8...@sina.com> added the comment:

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()
```

----------
nosy: +hongweipeng

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue37402>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to