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 cami
Recipients cami
Date 2012-11-03.15:15:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351955719.4.0.453680036148.issue16394@psf.upfronthosting.co.za>
In-reply-to
Content
The memory footprint of itertools.tee can be reduced substantially by using a shared buffer for the child iterators (see sample code). If local queues are desired for efficient threading support, they can be combined with a global queue, allowing to constrain the size of local queues.
History
Date User Action Args
2012-11-03 15:15:19camisetrecipients: + cami
2012-11-03 15:15:19camisetmessageid: <1351955719.4.0.453680036148.issue16394@psf.upfronthosting.co.za>
2012-11-03 15:15:19camilinkissue16394 messages
2012-11-03 15:15:19camicreate