Message 231489 - Python tracker
Message231489
| Author | ikelly |
|---|---|
| Recipients | ikelly |
| Date | 2014-11-21.18:42:52 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1416595372.6.0.247378552877.issue22911@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
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) |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2014-11-21 18:42:52 | ikelly | set | recipients: + ikelly |
| 2014-11-21 18:42:52 | ikelly | set | messageid: <1416595372.6.0.247378552877.issue22911@psf.upfronthosting.co.za> |
| 2014-11-21 18:42:52 | ikelly | link | issue22911 messages |
| 2014-11-21 18:42:52 | ikelly | create | |