Commit c9245a28 authored by Stefan Behnel's avatar Stefan Behnel

disable asyncio coroutine test in Py3.4(.3) due to an annoying type check:...

disable asyncio coroutine test in Py3.4(.3) due to an annoying type check: Py3.5 has a fix and later 3.4 versions might, too
parent 18691f38
......@@ -1048,10 +1048,13 @@ class SysSetCoroWrapperTest(unittest.TestCase):
if True or sys.version_info < (3, 5):
SysSetCoroWrapperTest = None
try:
import asyncio
except ImportError:
if sys.version_info < (3, 5): # (3, 4, 4)
CoroAsyncIOCompatTest = None
else:
try:
import asyncio
except ImportError:
CoroAsyncIOCompatTest = None
if __name__=="__main__":
unittest.main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment