Is it bad in Python, when I don't hold a reference of a Thread I created with: threading.Thread(target=worker_method)? Is it possible that the garbage collecor does anything to it, which affects the stability of my application?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||||
|
|
The thread will keep running regardless, but the downside is that you don't have a handle to the thread any more in order to communicate with it. A simple test shows that even when the thread object goes out of scope, its still running:
Even if you were to delete the |
|||||||
|