[issue26180] multiprocessing.util._afterfork_registry leak in threaded environment

2019-06-14 Thread Milan Zamazal
Milan Zamazal added the comment: I used Linux. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26180] multiprocessing.util._afterfork_registry leak in threaded environment

2019-06-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: With master and Windows 10, the output looks like (0, 61333912, ): (1, 63524512, . at 0x03CA2940>): (2, 60787504, . at 0x03CA2760>): ProcessLocalSet() (5, 63524512, . at 0x03CA2C60>): ... <8 more lines like the two with ForkAwareLocal.__init__> I

[issue26180] multiprocessing.util._afterfork_registry leak in threaded environment

2019-06-13 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: Why is it that __init__ is called multiple times? I'm just wondering if we could somehow ensure that __init__ is called only once. -- nosy: +jdemeyer ___ Python tracker

[issue26180] multiprocessing.util._afterfork_registry leak in threaded environment

2019-06-11 Thread Orivej Desh
Change by Orivej Desh : -- keywords: +patch pull_requests: +13849 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13986 ___ Python tracker ___

[issue26180] multiprocessing.util._afterfork_registry leak in threaded environment

2016-02-11 Thread Ned Deily
Changes by Ned Deily : -- nosy: +davin ___ Python tracker ___ ___ Python-bugs-list mailing

[issue26180] multiprocessing.util._afterfork_registry leak in threaded environment

2016-01-29 Thread Nir Soffer
Changes by Nir Soffer : -- nosy: +nirs ___ Python tracker ___ ___ Python-bugs-list mailing

[issue26180] multiprocessing.util._afterfork_registry leak in threaded environment

2016-01-22 Thread Milan Zamazal
New submission from Milan Zamazal: When calling multiprocessing.managers.BaseManager repeatedly from a client, each time from a new thread, new entry with (already existent) multiprocessing.util.ForkAwareLocal instance is inserted as a value into multiprocessing.util._afterfork_registry

[issue26180] multiprocessing.util._afterfork_registry leak in threaded environment

2016-01-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: Please post your 3.x version. 3.4 only gets security patches now. -- nosy: +terry.reedy versions: +Python 3.5, Python 3.6 -Python 3.4 ___ Python tracker