From: Charles-François Natali Date: Wed, 2 Nov 2011 19:30:59 +0000 (+0100) Subject: test_asyncore: Actually try to received OOB data. X-Git-Tag: v3.3.0a1~971 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf85c300cfc26c78029695adef917b5b165495d2;p=thirdparty%2FPython%2Fcpython.git test_asyncore: Actually try to received OOB data. --- diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py index c1b8637c1801..52dff0f4fa31 100644 --- a/Lib/test/test_asyncore.py +++ b/Lib/test/test_asyncore.py @@ -675,6 +675,7 @@ class BaseTestAPI(unittest.TestCase): class TestClient(BaseClient): def handle_expt(self): + self.socket.recv(1024, socket.MSG_OOB) self.flag = True class TestHandler(BaseTestHandler):