[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-14 Thread Dong-hee Na
Dong-hee Na added the comment: Looks like we update all the methods which are related to _after_fork under Lib/multiprocessing. I am now closing this issue. Thanks for the suggestion, Victor :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: ->

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-14 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset a5900ecf9f22e65bef489633692e9ea6941379c5 by Dong-hee Na in branch 'master': bpo-40221: Update multiprocessing to use _at_fork_reinit (GH-19511) https://github.com/python/cpython/commit/a5900ecf9f22e65bef489633692e9ea6941379c5 --

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-14 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +18864 pull_request: https://github.com/python/cpython/pull/19511 ___ Python tracker ___

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-14 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset e1945307d36849f8be8937144cf3dd6ebab6274c by Dong-hee Na in branch 'master': bpo-40221: Update multiprocessing to use _at_fork_reinit (GH-19477) https://github.com/python/cpython/commit/e1945307d36849f8be8937144cf3dd6ebab6274c --

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-12 Thread hai shi
Change by hai shi : -- nosy: +shihai1991 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-11 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +18831 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19477 ___ Python tracker ___

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-11 Thread Dong-hee Na
Dong-hee Na added the comment: we should find all usages from Lib/multiprocessing/*.py -- ___ Python tracker ___ ___

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-11 Thread Dong-hee Na
Dong-hee Na added the comment: I am going to take a look -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-10 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40221] Use new _at_fork_reinit() lock method in multiprocessing

2020-04-07 Thread STINNER Victor
New submission from STINNER Victor : Currently, _ResourceSharer._after_fork() of multiprocessing.resource_sharer creates new locks and leak old locks on purpose. This method can benefit of the newly added _at_fork_reinit() method added by bpo-40089. Queue._after_fork() could also call