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