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.
Created on 2014年11月21日 18:42 by ikelly, last changed 2022年04月11日 14:58 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg231489 - (view) | Author: Ian Kelly (ikelly) | Date: 2014年11月21日 18:42 | |
I expect this should result in a recursion depth exceeded error, not a segmentation fault. $ cat test.py import itertools l = [] it = itertools.chain.from_iterable(l) l.append(it) next(it) $ python3 test.py Segmentation fault (core dumped) |
|||
| msg231491 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2014年11月21日 19:08 | |
This is a duplicate of issue14010. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:10 | admin | set | github: 67100 |
| 2014年11月21日 19:08:29 | serhiy.storchaka | set | status: open -> closed superseder: deeply nested itertools objects segfault nosy: + serhiy.storchaka messages: + msg231491 resolution: duplicate stage: resolved |
| 2014年11月21日 18:42:52 | ikelly | create | |