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
ba03c237
Commit
ba03c237
authored
Aug 25, 2017
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Work around test failure in Py2.x.
parent
c0724860
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
tests/run/generators_py.py
tests/run/generators_py.py
+3
-1
No files found.
tests/run/generators_py.py
View file @
ba03c237
...
...
@@ -151,6 +151,7 @@ def check_throw():
def
check_yield_in_except
():
"""
>>> if sys.version_info[0] == 2: sys.exc_clear()
>>> try:
... raise TypeError("RAISED !")
... except TypeError as orig_exc:
...
...
@@ -174,7 +175,8 @@ def check_yield_in_except():
except
ValueError
as
exc
:
assert
sys
.
exc_info
()[
1
]
is
exc
,
sys
.
exc_info
()
yield
assert
sys
.
exc_info
()[
1
]
is
exc
,
sys
.
exc_info
()
if
cython
.
compiled
or
sys
.
version_info
[
0
]
>
2
:
assert
sys
.
exc_info
()[
1
]
is
exc
,
sys
.
exc_info
()
def
yield_in_except_throw_exc_type
():
...
...
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