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 ajaksu2
Recipients ajaksu2, jbrouwers, perrygreenfield
Date 2009-02-14.12:22:28
SpamBayes Score 2.4737226e-05
Marked as misclassified No
Message-id <1234614149.99.0.809362003963.issue808164@psf.upfronthosting.co.za>
In-reply-to
Content
Current code is:

    def close(self):
        self._sock = _closedsocket()
        dummy = self._sock._dummy
        for method in _delegate_methods:
            setattr(self, method, dummy)
    close.__doc__ = _realsocket.close.__doc__

It sure seems to be trying to avoid __del__ issues, does it fix this bug?
History
Date User Action Args
2009-02-14 12:22:30ajaksu2setrecipients: + ajaksu2, jbrouwers, perrygreenfield
2009-02-14 12:22:29ajaksu2setmessageid: <1234614149.99.0.809362003963.issue808164@psf.upfronthosting.co.za>
2009-02-14 12:22:28ajaksu2linkissue808164 messages
2009-02-14 12:22:28ajaksu2create