Summary
Shortlog
Changelog
Graph
Tags
Bookmarks
Branches
Files
Help
Search
simplify
tests/raise_again.py
285:6f583cfa39a5
190:54a71eb2fd00
2008-07-13
Paul Boddie
raw
annotate
files
changeset
graph
Commit long uncommitted changes.
1
class
A
:
2
pass
3
4
def
f
():
5
try
:
6
raise
A
7
except
A
,
e
:
8
raise
A
9
10
f
()