summaryrefslogtreecommitdiff
path: root/tests/stdlib/test_asyncore.py
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2018-02-17 22:41:37 +0300
committerSergey Shepelev <temotor@gmail.com>2018-03-11 02:21:01 +0300
commitfb300387a2f2761423dc71b3e4d18cb26a360368 (patch)
tree0dad33d1bf722f8701c5b919d658d3f559c06912 /tests/stdlib/test_asyncore.py
parent8fe75a76e773305f9748e3922aaf44bf4c39a939 (diff)
downloadeventlet-up.tar.gz
hubs: drop pyevent hubup
Diffstat (limited to 'tests/stdlib/test_asyncore.py')
-rw-r--r--tests/stdlib/test_asyncore.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/stdlib/test_asyncore.py b/tests/stdlib/test_asyncore.py
index ea889aa..23f35f3 100644
--- a/tests/stdlib/test_asyncore.py
+++ b/tests/stdlib/test_asyncore.py
@@ -49,16 +49,5 @@ try:
except NameError:
pass
-try:
- # temporarily disabling these tests in the python2.7/pyevent configuration
- from tests import using_pyevent
- import sys
- if using_pyevent(None) and sys.version_info >= (2, 7):
- TestAPI_UseSelect.test_handle_accept = lambda *a, **kw: None
- TestAPI_UseSelect.test_handle_close = lambda *a, **kw: None
- TestAPI_UseSelect.test_handle_read = lambda *a, **kw: None
-except NameError:
- pass
-
if __name__ == "__main__":
test_main()