You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
10 lines
185 B
Python
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()
|