Skip to content

Commit d628fc1

Browse files
authored
Update popen_spawn_posix.py
1 parent 6927632 commit d628fc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/multiprocessing/popen_spawn_posix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def _launch(self, process_obj):
6565
for fd in (parent_r, parent_w):
6666
if fd is not None:
6767
fds_to_close.append(fd)
68-
self.finalizer = util.Finalize(self, util.close_fds, fds_to_close)
68+
self.finalizer = util.Finalize(self, util.close_fds, fds_to_close)._key
6969

7070
for fd in (child_r, child_w):
7171
if fd is not None:

0 commit comments

Comments
 (0)