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


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


thread = threading.Thread(target=thread_target, args=(10,))
thread.start()