Commit b3be99a2 authored by Stefan Behnel's avatar Stefan Behnel

disable some more Py3.5 specific PEP 492 test bits

parent 12273ef1
...@@ -100,8 +100,8 @@ class TokenizerRegrTest(unittest.TestCase): ...@@ -100,8 +100,8 @@ class TokenizerRegrTest(unittest.TestCase):
ns = {} ns = {}
exec(buf, ns, ns) exec(buf, ns, ns)
self.assertEqual(ns['i499'](), 499) self.assertEqual(ns['i499'](), 499)
if hasattr(inspect, 'iscoroutinefunction'): self.assertEqual(type(ns['foo']()).__name__, 'coroutine')
self.assertTrue(inspect.iscoroutinefunction(ns['foo'])) #self.assertTrue(inspect.iscoroutinefunction(ns['foo']))
class CoroutineTest(unittest.TestCase): class CoroutineTest(unittest.TestCase):
...@@ -1045,7 +1045,7 @@ class SysSetCoroWrapperTest(unittest.TestCase): ...@@ -1045,7 +1045,7 @@ class SysSetCoroWrapperTest(unittest.TestCase):
# disable some tests that only apply to CPython # disable some tests that only apply to CPython
# TODO? # TODO?
if False and sys.version_info < (3, 5): if True or sys.version_info < (3, 5):
SysSetCoroWrapperTest = None SysSetCoroWrapperTest = None
try: try:
......
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