# HG changeset patch # User Raphaël Gomès # Date 1588893588 -7200 # Node ID 79f6f856c53f3f5d8539c63ac2803337a7778b9c # Parent 5d309906ed0e4e2b0ade4d1539cbea7dc2c44771 formatting: add missing newline Differential Revision: https://phab.mercurial-scm.org/D8509 diff -r 5d309906ed0e -r 79f6f856c53f mercurial/utils/procutil.py --- a/mercurial/utils/procutil.py Mon Apr 27 01:39:22 2020 +0200 +++ b/mercurial/utils/procutil.py Fri May 08 01:19:48 2020 +0200 @@ -612,6 +612,7 @@ # We use a thread to make the overhead tiny. def _do_wait(): os.waitpid(pid, 0) + threading.Thread(target=_do_wait, daemon=True).start() return # Parent process