summaryrefslogtreecommitdiff
path: root/doc/data/messages/b/bad-thread-instantiation/bad.py
blob: 20fa72f5a746054b826209b3ef7e6ab29796004e (plain)
1
2
3
4
5
6
7
8
9
import threading


def thread_target(n):
    print(n**2)


thread = threading.Thread(lambda: None)  # [bad-thread-instantiation]
thread.start()