Files
python-uncompyle6/test/simple_source/bug30/02_try_except_except.py
2018-06-23 00:06:35 -04:00

10 lines
185 B
Python

# From 3.0.1/lib/python3.0/_dummy_thread.py
def start_new_thread(function, args, kwargs={}):
try:
function()
except SystemExit:
pass
except:
args()