Skip to content

Commit 2eeeeb6

Browse files
authored
Update popen_spawn_posix.py
1 parent 409349f commit 2eeeeb6

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)._key
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)