projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2cca00
)
test_asyncore: Actually try to received OOB data.
author
Charles-François Natali
<neologix@free.fr>
Wed, 2 Nov 2011 19:30:59 +0000
(20:30 +0100)
committer
Charles-François Natali
<neologix@free.fr>
Wed, 2 Nov 2011 19:30:59 +0000
(20:30 +0100)
Lib/test/test_asyncore.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_asyncore.py
b/Lib/test/test_asyncore.py
index c1b8637c18014cc5e07ae8aea90b800c7fc2d4d3..52dff0f4fa310334770ddb5f977386df543a47cc 100644
(file)
--- 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):