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 Ramchandra Apte
Recipients Ramchandra Apte, janssen, loewis, vila
Date 2011-12-08.12:51:20
SpamBayes Score 0.0069830865
Marked as misclassified No
Message-id <1323348680.83.0.740346402461.issue1062@psf.upfronthosting.co.za>
In-reply-to
Content
oops should be
class sock(socket.socket):
    _bind = socket.socket.bind
    def bind(self,*args):
        self.is_bound = True
        self._bind(self,*args)
History
Date User Action Args
2011-12-08 12:51:20Ramchandra Aptesetrecipients: + Ramchandra Apte, loewis, janssen, vila
2011-12-08 12:51:20Ramchandra Aptesetmessageid: <1323348680.83.0.740346402461.issue1062@psf.upfronthosting.co.za>
2011-12-08 12:51:20Ramchandra Aptelinkissue1062 messages
2011-12-08 12:51:20Ramchandra Aptecreate