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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
aaa69fd7
Commit
aaa69fd7
authored
Aug 31, 2011
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test case for #725: invalid control flow analysis for multiple except clauses.
parent
266bb136
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
tests/run/control_flow_except_T725.pyx
tests/run/control_flow_except_T725.pyx
+13
-0
No files found.
tests/run/control_flow_except_T725.pyx
0 → 100644
View file @
aaa69fd7
def
unused_except_capture
():
"""
>>> unused_except_capture()
"""
try
:
try
:
raise
ValueError
except
TypeError
,
s
:
raise
TypeError
except
ValueError
,
s
:
raise
ValueError
# segfault
except
ValueError
:
pass
\ No newline at end of file
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