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 pitrou
Recipients flox, hynek, ned.deily, pitrou, r.david.murray, ronaldoussoren
Date 2012-08-13.15:36:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344872216.35.0.629355104592.issue15635@psf.upfronthosting.co.za>
In-reply-to
Content
> The test case finds some leak in 3.3 too, it seems.

3.3 should be much better since it uses mmap() and munmap() to manage the object allocator's arenas (unless this is disabled under OS X for some reason, that is).

Here under Linux:

$ python3.3 testiterbug.py 
3.3.0b1 (default:1d811e1097ed, Jul 29 2012, 20:20:37) 
[GCC 4.5.2]

[row for row in iterit(16777216)]
Memory usage:   7.8 MB

[row for row in iterit(8388608)]
Memory usage:   7.8 MB
History
Date User Action Args
2012-08-13 15:36:56pitrousetrecipients: + pitrou, ronaldoussoren, ned.deily, r.david.murray, flox, hynek
2012-08-13 15:36:56pitrousetmessageid: <1344872216.35.0.629355104592.issue15635@psf.upfronthosting.co.za>
2012-08-13 15:36:55pitroulinkissue15635 messages
2012-08-13 15:36:55pitroucreate