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

This commit is contained in:
Victor Stinner 2013-08-28 12:21:47 +02:00
parent 0d097b6299
commit 67973c0279
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ def close_all_fds_except(fds):
#
def spawnv_passfds(path, args, passfds):
import _posixsubprocess, fcntl
import _posixsubprocess
passfds = sorted(passfds)
errpipe_read, errpipe_write = os.pipe()
try: