Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
bcb15381
Commit
bcb15381
authored
9 years ago
by
Michael Arntzenius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add test/tests/raise_2arg.py
parent
2c33f2ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
test/tests/raise_2arg.py
test/tests/raise_2arg.py
+11
-0
No files found.
test/tests/raise_2arg.py
0 → 100644
View file @
bcb15381
# two-argument `raise' statements where second argument is itself an exception
class
A
(
Exception
):
pass
class
B
(
Exception
):
pass
def
f
():
try
:
raise
A
,
B
(
2
)
except
A
as
e
:
print
'A'
,
e
except
B
as
e
:
print
'B'
,
e
f
()
This diff is collapsed.
Click to expand it.
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