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 Henry Carscadden
Recipients Henry Carscadden, dstufft, eric.araujo
Date 2020-04-08.20:12:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1586376726.21.0.0873613535989.issue40230@roundup.psfhosted.org>
In-reply-to
Content
The product method in itertools provides an implementation of the Cartesian product that when run on with many arguments quickly gives out of memory errors. The current implementation creates a lot of unnecessary lists in this situation. A more appropriate implementation uses dynamic programming to avoid these out of memory issues.
History
Date User Action Args
2020-04-08 20:12:06Henry Carscaddensetrecipients: + Henry Carscadden, eric.araujo, dstufft
2020-04-08 20:12:06Henry Carscaddensetmessageid: <1586376726.21.0.0873613535989.issue40230@roundup.psfhosted.org>
2020-04-08 20:12:06Henry Carscaddenlinkissue40230 messages
2020-04-08 20:12:06Henry Carscaddencreate