index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
subprocess.py
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
|
Replace IOError with OSError (#16715)
Andrew Svetlov
2012-12-25
1
-2/+2
*
|
|
Keep ref to ECHILD in local scope (#16650)
Andrew Svetlov
2012-12-24
1
-2/+2
|
\
\
\
|
|
/
/
|
*
|
Keep ref to ECHILD in local scope (#16650)
Andrew Svetlov
2012-12-24
1
-2/+2
|
|
\
\
|
|
|
/
|
|
*
Keep ref to ECHILD in local scope (#16650)
Andrew Svetlov
2012-12-24
1
-2/+2
*
|
|
Fix #14470. Remove w9xpopen per PEP 11.
Brian Curtin
2012-12-23
1
-32/+0
*
|
|
Issue #16706: get rid of os.error
Andrew Svetlov
2012-12-18
1
-2/+2
*
|
|
Get rig of EnvironmentError (#16705)
Andrew Svetlov
2012-12-17
1
-2/+2
*
|
|
Issue #16704: Get rid of select.error in stdlib. Use OSError instead.
Andrew Svetlov
2012-12-17
1
-2/+2
*
|
|
Remove obsolete code: now IOError and WindowsError are aliases for OSError
Andrew Svetlov
2012-12-17
1
-8/+0
*
|
|
Fixes issue #16140: The subprocess module no longer double closes its
Gregory P. Smith
2012-11-11
1
-3/+0
|
\
\
\
|
|
/
/
|
*
|
Fixes issue #16140: The subprocess module no longer double closes its
Gregory P. Smith
2012-11-11
1
-3/+0
|
|
\
\
|
|
|
/
|
|
*
Fixes issue #16140: The subprocess module no longer double closes its
Gregory P. Smith
2012-11-11
1
-3/+0
*
|
|
Remove the subprocess "bad exception data" warning (formerly a print!)
Gregory P. Smith
2012-11-11
1
-3/+2
|
\
\
\
|
|
/
/
|
*
|
Remove the subprocess "bad exception data" warning (formerly a print!)
Gregory P. Smith
2012-11-11
1
-3/+2
|
|
\
\
|
|
|
/
|
|
*
Remove the subprocess "bad exception data" warning (formerly a print!)
Gregory P. Smith
2012-11-11
1
-3/+2
*
|
|
Raise our own SubprocessError rather than a RuntimeError in when dealing with
Gregory P. Smith
2012-11-11
1
-6/+6
|
/
/
*
|
Rename a local variable for readability and change a "this can't
Gregory P. Smith
2012-11-11
1
-6/+8
|
\
\
|
|
/
|
*
Rename a local variable for readability and change a "this can't
Gregory P. Smith
2012-11-11
1
-6/+8
*
|
Fixes issue #16327: The subprocess module no longer leaks file descriptors
Gregory P. Smith
2012-11-11
1
-3/+17
|
\
\
|
|
/
|
*
Fixes issue #16327: The subprocess module no longer leaks file descriptors
Gregory P. Smith
2012-11-11
1
-3/+17
*
|
Fixes issue #14396: Handle the odd rare case of waitpid returning 0
Gregory P. Smith
2012-11-11
1
-3/+7
|
\
\
|
|
/
|
*
Fixes issue #14396: Handle the odd rare case of waitpid returning 0 when
Gregory P. Smith
2012-11-11
1
-2/+6
*
|
Fixes Issue #16114: The subprocess module no longer provides a
Gregory P. Smith
2012-10-10
1
-1/+9
|
\
\
|
|
/
|
*
Fixes Issue #16114: The subprocess module no longer provides a
Gregory P. Smith
2012-10-10
1
-1/+13
*
|
Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILD
Gregory P. Smith
2012-09-29
1
-1/+8
|
\
\
|
|
/
|
*
Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILD
Gregory P. Smith
2012-09-29
1
-1/+8
*
|
Issue #15595: Fix subprocess.Popen(universal_newlines=True)
Andrew Svetlov
2012-08-19
1
-2/+2
|
\
\
|
|
/
|
*
Issue #15595: Fix subprocess.Popen(universal_newlines=True)
Andrew Svetlov
2012-08-19
1
-2/+2
*
|
Use Thread.is_alive() instead of old-style Thread.isAlive() in subprocess.
Andrew Svetlov
2012-08-19
1
-2/+2
*
|
Cleanup universal_newlines usage for subprocess.Popen, remove unused param.
Andrew Svetlov
2012-08-15
1
-4/+4
*
|
Issue #15592. Fix regression: subprocess.communicate() breaks on no input wit...
Andrew Svetlov
2012-08-14
1
-12/+13
|
\
\
|
|
/
*
|
Close #14690: Use monotonic clock instead of system clock in the sched,
Victor Stinner
2012-05-30
1
-4/+8
*
|
Implemented PEP 405 (Python virtual environments).
Vinay Sajip
2012-05-26
1
-1/+1
*
|
Move private function _args_from_interpreter_flags() to subprocess.py, so
Antoine Pitrou
2012-05-18
1
-0/+31
*
|
Issue #11750: The Windows API functions scattered in the _subprocess and
Antoine Pitrou
2012-04-18
1
-37/+69
*
|
Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Wi...
Antoine Pitrou
2012-03-11
1
-1/+9
|
\
\
|
|
/
|
*
Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Wi...
Antoine Pitrou
2012-03-11
1
-1/+11
*
|
Use InterruptedError instead of checking for EINTR
Antoine Pitrou
2011-10-23
1
-4/+2
*
|
Issue #12494: Close pipes and kill process on error in subprocess functions
Victor Stinner
2011-09-01
1
-22/+34
*
|
Issue #12650: Fix a race condition where a subprocess.Popen could leak
Charles-François Natali
2011-08-18
1
-1/+6
|
\
\
|
|
/
|
*
Issue #12650: Fix a race condition where a subprocess.Popen could leak
Charles-François Natali
2011-08-18
1
-1/+6
|
*
Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is
Ross Lagerwall
2011-07-27
1
-0/+8
*
|
Issue #12591: Improve support of "universal newlines" in the subprocess
Antoine Pitrou
2011-07-23
1
-1/+1
|
\
\
|
|
/
|
*
Issue #12591: Improve support of "universal newlines" in the subprocess
Antoine Pitrou
2011-07-23
1
-1/+1
*
|
(merge 3.2) Issue #12493: subprocess: communicate() handles EINTR
Victor Stinner
2011-07-05
1
-3/+3
|
\
\
|
|
/
|
*
Issue #12493: subprocess: communicate() handles EINTR
Victor Stinner
2011-07-05
1
-3/+3
*
|
(merge 3.2) Close #12383: Fix subprocess module with env={}: don't copy the
Victor Stinner
2011-06-21
1
-1/+1
|
\
\
|
|
/
|
*
Close #12383: Fix subprocess module with env={}: don't copy the environment
Victor Stinner
2011-06-21
1
-1/+1
*
|
(Merge 3.2) Close #12085: Fix an attribute error in subprocess.Popen destructor
Victor Stinner
2011-05-31
1
-1/+4
|
\
\
|
|
/
|
*
Close #12085: Fix an attribute error in subprocess.Popen destructor if the
Victor Stinner
2011-05-31
1
-1/+4
[prev]
[next]