Message254268
| Author |
serhiy.storchaka |
| Recipients |
abacabadabacaba, benjamin.peterson, eli.bendersky, pitrou, rhettinger, scoder, serhiy.storchaka, stutzbach |
| Date |
2015年11月07日.12:50:57 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1446900658.13.0.739458815177.issue25455@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
There is also a crash with Python implementation of TextIOWrapper.
>>> import _pyio as io
>>> t = io.TextIOWrapper(io.BytesIO())
>>> t.mode = t
>>> t
Fatal Python error: Cannot recover from stack overflow.
Current thread 0xb74a9700 (most recent call first):
File "/home/serhiy/py/cpython/Lib/_pyio.py", line 1982 in __repr__
File "/home/serhiy/py/cpython/Lib/_pyio.py", line 1992 in __repr__
[...]
File "/home/serhiy/py/cpython/Lib/_pyio.py", line 1992 in __repr__
File "/home/serhiy/py/cpython/Lib/_pyio.py", line 1992 in __repr__
...
Aborted (core dumped) |
|