summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-11-02 19:30:59 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-11-02 19:30:59 (GMT)
commitcf85c300cfc26c78029695adef917b5b165495d2 (patch)
tree7a02939f00ae62ceb6be73a6d244c7223dc6ac82 /Lib
parentb2cca00c142d69510a268bba9cfeb6eefec923e4 (diff)
downloadcpython-cf85c300cfc26c78029695adef917b5b165495d2.zip
cpython-cf85c300cfc26c78029695adef917b5b165495d2.tar.gz
cpython-cf85c300cfc26c78029695adef917b5b165495d2.tar.bz2
test_asyncore: Actually try to received OOB data.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_asyncore.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py
index c1b8637..52dff0f 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):