summaryrefslogtreecommitdiff
path: root/doc/data/messages/b/bad-thread-instantiation/bad.py
blob: 580786d853b68ea456c09c1d76b6eaf467ab8db0 (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()