mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Issue #18865: remove unused import from multiprocessing.util.spawnv_passfds()
This commit is contained in:
parent
0d097b6299
commit
67973c0279
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue