Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
81a191b3
Commit
81a191b3
authored
May 26, 2007
by
Peter Astrand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Applied patch 1669481, slightly modified: Support close_fds on Win32
parent
5f9b6c9a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
6 deletions
+16
-6
Doc/lib/libsubprocess.tex
Doc/lib/libsubprocess.tex
+4
-1
Lib/subprocess.py
Lib/subprocess.py
+4
-5
Lib/test/test_subprocess.py
Lib/test/test_subprocess.py
+8
-0
No files found.
Doc/lib/libsubprocess.tex
View file @
81a191b3
...
...
@@ -89,7 +89,10 @@ called in the child process just before the child is executed.
If
\var
{
close
_
fds
}
is true, all file descriptors except
\constant
{
0
}
,
\constant
{
1
}
and
\constant
{
2
}
will be closed before the child process is
executed. (
\UNIX
{}
only)
executed. (
\UNIX
{}
only). Or, on Windows, if
\var
{
close
_
fds
}
is true
then no handles will be inherited by the child process. Note that on
Windows, you cannot set
\var
{
close
_
fds
}
to true and also redirect the
standard handles by setting
\var
{
stdin
}
,
\var
{
stdout
}
or
\var
{
stderr
}
.
If
\var
{
shell
}
is
\constant
{
True
}
, the specified command will be
executed through the shell.
...
...
Lib/subprocess.py
View file @
81a191b3
...
...
@@ -545,9 +545,10 @@ class Popen(object):
if
preexec_fn
is
not
None
:
raise
ValueError
(
"preexec_fn is not supported on Windows "
"platforms"
)
if
close_fds
:
if
close_fds
and
(
stdin
is
not
None
or
stdout
is
not
None
or
stderr
is
not
None
):
raise
ValueError
(
"close_fds is not supported on Windows "
"platforms"
)
"platforms
if you redirect stdin/stdout/stderr
"
)
else
:
# POSIX
if
startupinfo
is
not
None
:
...
...
@@ -804,9 +805,7 @@ class Popen(object):
hp
,
ht
,
pid
,
tid
=
CreateProcess
(
executable
,
args
,
# no special security
None
,
None
,
# must inherit handles to pass std
# handles
1
,
int
(
not
close_fds
),
creationflags
,
env
,
cwd
,
...
...
Lib/test/test_subprocess.py
View file @
81a191b3
...
...
@@ -617,8 +617,16 @@ class ProcessTestCase(unittest.TestCase):
self
.
assertRaises
(
ValueError
,
subprocess
.
call
,
[
sys
.
executable
,
"-c"
,
"import sys; sys.exit(47)"
],
stdout
=
subprocess
.
PIPE
,
close_fds
=
True
)
def
test_close_fds
(
self
):
# close file descriptors
rc
=
subprocess
.
call
([
sys
.
executable
,
"-c"
,
"import sys; sys.exit(47)"
],
close_fds
=
True
)
self
.
assertEqual
(
rc
,
47
)
def
test_shell_sequence
(
self
):
# Run command through the shell (sequence)
newenv
=
os
.
environ
.
copy
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment