You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
506 B
Python
24 lines
506 B
Python
5 years ago
|
import sys
|
||
|
|
||
|
__all__ = ['reraise']
|
||
|
|
||
|
|
||
|
def exec_(_code_, _globs_=None, _locs_=None):
|
||
|
"""Execute code in a namespace."""
|
||
|
if _globs_ is None:
|
||
|
frame = sys._getframe(1)
|
||
|
_globs_ = frame.f_globals
|
||
|
if _locs_ is None:
|
||
|
_locs_ = frame.f_locals
|
||
|
del frame
|
||
|
elif _locs_ is None:
|
||
|
_locs_ = _globs_
|
||
|
exec("""exec _code_ in _globs_, _locs_""")
|
||
|
|
||
|
exec_("""def reraise(tp, value, tb=None):
|
||
|
try:
|
||
|
raise tp, value, tb
|
||
|
finally:
|
||
|
tb = None
|
||
|
""")
|