8000 Update popen_forkserver.py · geryogam/cpython@590f446 · GitHub
[go: up one dir, main page]

Skip to conten 10000 t

Commit 590f446

Browse files
authored
Update popen_forkserver.py
1 parent e369d5e commit 590f446

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/multiprocessing/popen_forkserver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def _launch(self, process_obj):
5353
# parent process used by the child process.
5454
_parent_w = os.dup(w)
5555
self.finalizer = util.Finalize(self, util.close_fds,
56-
(_parent_w, self.sentinel))
56+
(_parent_w, self.sentinel))._key
5757
with open(w, 'wb', closefd=True) as f:
5858
f.write(buf.getbuffer())
5959
self.pid = forkserver.read_signed(self.sentinel)

0 commit comments

Comments
 (0)
0