8 lines
121 B
Python
8 lines
121 B
Python
# this produces syntax error on Python3
|
|
|
|
__all__ = ['reraise']
|
|
|
|
|
|
def reraise(type, value, tb):
|
|
raise type, value, tb
|