0
I’m using Python 3.7.x
When I call a thread through the command:
t = Thread(target=....
In VS Code shows the thread list in CALL STACK (Call Stack) and runs normal.
But when I call through command:
t = threading.Thread(target=....
It also runs normal but does not show in the CALL STACKS list (Call Stack)
What is the difference of these two forms and pq one shows in the CALL STACKS list and another not?