[issue38520] There is no proper way to know if a process is the main one

2020-12-02 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 4.0 -> 5.0 pull_requests: +22489 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23621 ___ Python tracker

[issue38520] There is no proper way to know if a process is the main one

2019-10-19 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38520] There is no proper way to know if a process is the main one

2019-10-18 Thread Ned Deily
Change by Ned Deily : -- nosy: +davin, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38520] There is no proper way to know if a process is the main one

2019-10-18 Thread Adrien
New submission from Adrien : Hi. I noticed that there exists the function "threading.main_thread()", but there is no equivalent for the "multiprocessing" module. Is there a reason for this absence? These StackOverflow questions are related to this problem: -