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 amaury.forgeotdarc, barry, benjamin.peterson, donmez, gpolo, lemburg, loewis, pitrou, teoliphant
Date 2008-08-14.19:30:54
SpamBayes Score 0.00054286397
Marked as misclassified No
Message-id <1218742251.5572.15.camel@fsol>
In-reply-to <48A4822D.3060005@v.loewis.de>
Content
Le jeudi 14 août 2008 à 19:06 +0000, Martin v. Löwis a écrit :
> Martin v. Löwis <martin@v.loewis.de> added the comment:
> 
> > By the way, even without that patch, there is a memory leak:
> 
> With the patch, this memory leak goes away.

But now:

30
>>> m = memoryview(b)
>>> sys.getrefcount(b)
32
>>> del m
>>> sys.getrefcount(b)
31
History
Date User Action Args
2008-08-14 19:30:55pitrousetrecipients: + pitrou, lemburg, loewis, barry, teoliphant, amaury.forgeotdarc, donmez, benjamin.peterson, gpolo
2008-08-14 19:30:54pitroulinkissue3139 messages
2008-08-14 19:30:54pitroucreate