Files
Gymnasium/gym/utils/reraise_impl_py3.py
2016-04-30 22:37:33 -07:00

5 lines
219 B
Python

# http://stackoverflow.com/a/33822606 -- `from None` disables Python 3'
# semi-smart exception chaining, which we don't want in this case.
def reraise_impl(e, traceback):
raise e.with_traceback(traceback) from None