Message 84883 - Python tracker

Message84883

Author stutzbach
Recipients ajaksu2, jbrouwers, perrygreenfield, stutzbach
Date 2009-03-31.19:49:13
SpamBayes Score 0.011837062
Marked as misclassified No
Message-id <1238528954.67.0.0858969079881.issue808164@psf.upfronthosting.co.za>
In-reply-to
Content
Daniel,

_closedsocket is a global, so it isn't safe to be used within __del__
during shutdown.

In the py3k branch, socket.__del__ calls socket._real_close which
references the global _socket.  So it's not safe their, either.
History
Date User Action Args
2009-03-31 19:49:14stutzbachsetrecipients: + stutzbach, jbrouwers, perrygreenfield, ajaksu2
2009-03-31 19:49:14stutzbachsetmessageid: <1238528954.67.0.0858969079881.issue808164@psf.upfronthosting.co.za>
2009-03-31 19:49:13stutzbachlinkissue808164 messages
2009-03-31 19:49:13stutzbachcreate