Kaydet (Commit) 67973c02 authored tarafından Victor Stinner's avatar Victor Stinner

Issue #18865: remove unused import from multiprocessing.util.spawnv_passfds()

üst 0d097b62
...@@ -356,7 +356,7 @@ def close_all_fds_except(fds): ...@@ -356,7 +356,7 @@ def close_all_fds_except(fds):
# #
def spawnv_passfds(path, args, passfds): def spawnv_passfds(path, args, passfds):
import _posixsubprocess, fcntl import _posixsubprocess
passfds = sorted(passfds) passfds = sorted(passfds)
errpipe_read, errpipe_write = os.pipe() errpipe_read, errpipe_write = os.pipe()
try: try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment