Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
b3be99a2
Commit
b3be99a2
authored
May 25, 2015
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disable some more Py3.5 specific PEP 492 test bits
parent
12273ef1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
tests/run/test_coroutines_pep492.pyx
tests/run/test_coroutines_pep492.pyx
+3
-3
No files found.
tests/run/test_coroutines_pep492.pyx
View file @
b3be99a2
...
...
@@ -100,8 +100,8 @@ class TokenizerRegrTest(unittest.TestCase):
ns
=
{}
exec
(
buf
,
ns
,
ns
)
self
.
assertEqual
(
ns
[
'i499'
](),
499
)
if
hasattr
(
inspect
,
'iscoroutinefunction'
):
self
.
assertTrue
(
inspect
.
iscoroutinefunction
(
ns
[
'foo'
]))
self
.
assertEqual
(
type
(
ns
[
'foo'
]()).
__name__
,
'coroutine'
)
#
self.assertTrue(inspect.iscoroutinefunction(ns['foo']))
class
CoroutineTest
(
unittest
.
TestCase
):
...
...
@@ -1045,7 +1045,7 @@ class SysSetCoroWrapperTest(unittest.TestCase):
# disable some tests that only apply to CPython
# TODO?
if
False and
sys.version_info < (3, 5):
if
True or
sys.version_info < (3, 5):
SysSetCoroWrapperTest = None
try:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment