bpo-16500: Use register_at_fork() in the threading module#1843
bpo-16500: Use register_at_fork() in the threading module#1843pitrou merged 3 commits intopython:masterfrom
Conversation
|
@pitrou, thanks for your PR! By analyzing the history of the files in this pull request, we identified @serhiy-storchaka, @brettcannon and @benjaminp to be potential reviewers. |
|
Comments in Is it good that |
…ter_at_fork_threading
Being called after |
| exc_tb.tb_frame.f_code.co_name)), file=self._stderr) | ||
| exc_tb = exc_tb.tb_next | ||
| print(("%s: %s" % (exc_type, exc_value)), file=self._stderr) | ||
| self._stderr.flush() |
There was a problem hiding this comment.
Just pass flush=True to the print() above.
No description provided.