Message382069
| Author |
eric.smith |
| Recipients |
Mark.Shannon, eric.smith, ronaldoussoren, serhiy.storchaka, veky, xxm |
| Date |
2020年11月29日.15:05:00 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1606662300.7.0.588537100265.issue42500@roundup.psfhosted.org> |
| In-reply-to |
| Content |
Here's the smallest reproducer I could come up with. It fails on Windows with 3.9 native(compiled locally) (Fatal Python error: _Py_CheckRecursiveCall: Cannot recover from stack overflow), works (raises RecursionError) with cygwin 3.8.3.
import os
def status():
for fd in range(4):
try:
st = os.fstat(fd)
except status() as e:
pass
status() |
|