DEBSOURCES
Skip Quicknav
sources / python-yappi / 1.6.10-2 / tests / run_as_script.py
123456789
import threading class FancyThread(threading.Thread): def run(self): pass t = FancyThread() t.start() t.join()