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): ...@@ -1048,10 +1048,13 @@ class SysSetCoroWrapperTest(unittest.TestCase):
if True or sys.version_info < (3, 5): if True or sys.version_info < (3, 5):
SysSetCoroWrapperTest = None SysSetCoroWrapperTest = None
try: if sys.version_info < (3, 5): # (3, 4, 4)
import asyncio
except ImportError:
CoroAsyncIOCompatTest = None CoroAsyncIOCompatTest = None
else:
try:
import asyncio
except ImportError:
CoroAsyncIOCompatTest = None
if __name__=="__main__": if __name__=="__main__":
unittest.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