Message 370201 - Python tracker
Message370201
| Author | nougmanoff |
|---|---|
| Recipients | nougmanoff |
| Date | 2020-05-28.12:55:45 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1590670546.03.0.0667180087022.issue40806@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
def x(y):
while True:
yield y
p = product(x(1), x(2))
next(p) # this string will never be reached. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2020-05-28 12:55:46 | nougmanoff | set | recipients: + nougmanoff |
| 2020-05-28 12:55:46 | nougmanoff | set | messageid: <1590670546.03.0.0667180087022.issue40806@roundup.psfhosted.org> |
| 2020-05-28 12:55:46 | nougmanoff | link | issue40806 messages |
| 2020-05-28 12:55:45 | nougmanoff | create | |