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.

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:46nougmanoffsetrecipients: + nougmanoff
2020-05-28 12:55:46nougmanoffsetmessageid: <1590670546.03.0.0667180087022.issue40806@roundup.psfhosted.org>
2020-05-28 12:55:46nougmanofflinkissue40806 messages
2020-05-28 12:55:45nougmanoffcreate