File: run_as_script.py

package info (click to toggle)
python-yappi 1.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,612 kB
  • sloc: python: 4,088; ansic: 2,515; makefile: 29
file content (9 lines) | stat: -rw-r--r-- 125 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
import threading

class FancyThread(threading.Thread):
    def run(self):
        pass

t = FancyThread()
t.start()
t.join()