Message 183041 - Python tracker
Message183041
| Author | serhiy.storchaka |
|---|---|
| Recipients | rhettinger, serhiy.storchaka |
| Date | 2013-02-26.10:28:14 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1361874495.09.0.394992661852.issue17300@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
http://permalink.gmane.org/gmane.comp.python.ideas/19669 >>> from itertools import islice, count >>> it = count() >>> for i in range(1000000): ... it = islice(it, 0) ... >>> del it Segmentation fault This looks very similar to the crash in tee() (issue13454). |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2013-02-26 10:28:15 | serhiy.storchaka | set | recipients: + serhiy.storchaka, rhettinger |
| 2013-02-26 10:28:15 | serhiy.storchaka | set | messageid: <1361874495.09.0.394992661852.issue17300@psf.upfronthosting.co.za> |
| 2013-02-26 10:28:15 | serhiy.storchaka | link | issue17300 messages |
| 2013-02-26 10:28:14 | serhiy.storchaka | create | |