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 loewis
Recipients amaury.forgeotdarc, ggenellina, gregory.p.smith, gvanrossum, jhylton, loewis, romkyns, zanella
Date 2008-11-29.13:25:12
SpamBayes Score 5.27376e-06
Marked as misclassified No
Message-id <1227965113.92.0.437889956912.issue3826@psf.upfronthosting.co.za>
In-reply-to
Content
I don't think this is quite right yet. If I run

import socket
s=socket.socket()
s.connect(('www.python.org',80))
x=s.makefile()
del x
del s

and put a print statement into real_close, I don't see that real_close
is invoked.
History
Date User Action Args
2008-11-29 13:25:14loewissetrecipients: + loewis, gvanrossum, jhylton, gregory.p.smith, amaury.forgeotdarc, ggenellina, zanella, romkyns
2008-11-29 13:25:13loewissetmessageid: <1227965113.92.0.437889956912.issue3826@psf.upfronthosting.co.za>
2008-11-29 13:25:13loewislinkissue3826 messages
2008-11-29 13:25:12loewiscreate