Author janssen
Recipients amaury.forgeotdarc, christian.heimes, gvanrossum, janssen
Date 2007-12-11.00:38:18
SpamBayes Score 0.0143384
Marked as misclassified No
Message-id <1197333499.24.0.68579801858.issue1469@psf.upfronthosting.co.za>
In-reply-to
Content
Ah, I see what's going on.  The revision of the socket code (nice job,
by the way) removed the distinction between the C socket object and the
Python socket object.  The C SSLContext keeps a pointer to the C socket
object, which is now the Python socket object, or in the SSL case, the
SSLSocket object.  So there's a circular reference.

The right fix is to make the ref in the SSL C code a weakref.
History
Date User Action Args
2007-12-11 00:38:19janssensetspambayes_score: 0.0143384 -> 0.0143384
recipients: + janssen, gvanrossum, amaury.forgeotdarc, christian.heimes
2007-12-11 00:38:19janssensetspambayes_score: 0.0143384 -> 0.0143384
messageid: <1197333499.24.0.68579801858.issue1469@psf.upfronthosting.co.za>
2007-12-11 00:38:19janssenlinkissue1469 messages
2007-12-11 00:38:18janssencreate