File: run_as_script.py

package info (click to toggle)
python-yappi 1.6.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 1,612 kB
  • sloc: python: 4,081; ansic: 2,500; makefile: 27
file content (9 lines) | stat: -rw-r--r-- 125 bytes parent folder | download | duplicates (3)
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()