-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hide debugger threads from being returned in the threading module #202
Comments
The problem is that you're waiting for all threads to finish (except the main thread) in:
So, what happens is that some of the threads returned from The fix for your own code would be joining just the threads that you created. i.e.:
I'm leaving this open because we may want to hide the debugger threads in the future (I'll update the title to reflect that). |
Great, it works, thanx. |
Sorry I am new to GitHub and I accidentally closed this. |
This code should go to end but in VS Code does not. In others IDE this run to the end.
Is this BUG or?
Code is:
The text was updated successfully, but these errors were encountered: