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 giampaolo.rodola
Recipients giampaolo.rodola, jcea, python-dev, trent
Date 2012-10-22.12:51:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350910283.16.0.705422263646.issue16274@psf.upfronthosting.co.za>
In-reply-to
Content
This should do it:

diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py
--- a/Lib/test/test_asyncore.py
+++ b/Lib/test/test_asyncore.py
@@ -484,8 +484,9 @@
         return self.socket.getsockname()[:2]
 
     def handle_accept(self):
-        sock, addr = self.accept()
-        self.handler(sock)
+        pair = self.accept()
+        if pair is not None:
+            self.handler(pair[0])
 
     def handle_error(self):
         raise
History
Date User Action Args
2012-10-22 12:51:23giampaolo.rodolasetrecipients: + giampaolo.rodola, jcea, trent, python-dev
2012-10-22 12:51:23giampaolo.rodolasetmessageid: <1350910283.16.0.705422263646.issue16274@psf.upfronthosting.co.za>
2012-10-22 12:51:23giampaolo.rodolalinkissue16274 messages
2012-10-22 12:51:23giampaolo.rodolacreate