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 mark.dickinson
Recipients mark.dickinson, ronaldoussoren
Date 2010-08-01.16:39:26
SpamBayes Score 0.00123696
Marked as misclassified No
Message-id <1280680769.35.0.666204409525.issue9448@psf.upfronthosting.co.za>
In-reply-to
Content
Minimal example to reproduce:  the script below exhausts my system memory in a minute or two.

import io
rawio = io.BytesIO(b"abc")
bufio = io.BufferedReader(rawio)
while True:
    bufio.__init__(rawio)
History
Date User Action Args
2010-08-01 16:39:29mark.dickinsonsetrecipients: + mark.dickinson, ronaldoussoren
2010-08-01 16:39:29mark.dickinsonsetmessageid: <1280680769.35.0.666204409525.issue9448@psf.upfronthosting.co.za>
2010-08-01 16:39:27mark.dickinsonlinkissue9448 messages
2010-08-01 16:39:26mark.dickinsoncreate