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
*
remove unnecessary word (closes #19060)
Benjamin Peterson
2014-03-13
1
-1/+1
*
issue12085: Use more Pythonic way to check _child_created.
Serhiy Storchaka
2014-02-10
1
-4/+5
*
Issue #18851: Avoid a double close of subprocess pipes when the child process...
Antoine Pitrou
2013-08-30
1
-27/+46
*
Issue #18763: subprocess: The file descriptors are now closed after calling the
Charles-François Natali
2013-08-25
1
-4/+5
*
#18705: fix a number of typos. Patch by Févry Thibault.
Ezio Melotti
2013-08-17
1
-1/+1
*
Issue #18186: remove obsolete 2.2 compatibility comment.
Ned Deily
2013-06-11
1
-2/+0
*
Issue #12098: multiprocessing on Windows now starts child processes
Kristján Valur Jónsson
2013-03-19
1
-0/+31
*
Keep ref to ECHILD in local scope (#16650)
Andrew Svetlov
2012-12-24
1
-2/+2
*
Fix issue #16140 bug that the fix to issue #16327 added - don't double
Gregory P. Smith
2012-11-11
1
-3/+0
*
Fixes issue #16327: The subprocess module no longer leaks file descriptors
Gregory P. Smith
2012-11-11
1
-6/+27
*
Fixes issue #14396: Handle the odd rare case of waitpid returning 0
Gregory P. Smith
2012-11-11
1
-2/+6
*
Issue #15756: subprocess.poll() now properly handles errno.ECHILD to
Gregory P. Smith
2012-09-29
1
-1/+8
*
Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Wi...
Antoine Pitrou
2012-03-11
1
-1/+11
*
Issue #12786: Set communication pipes used by subprocess.Popen CLOEXEC to avoid
Charles-François Natali
2011-08-25
1
-6/+16
*
Issue #12650: Fix a race condition where a subprocess.Popen could leak
Charles-François Natali
2011-08-18
1
-1/+1
*
Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is
Ross Lagerwall
2011-07-27
1
-0/+8
*
Issue #12493: subprocess: communicate() handles EINTR
Victor Stinner
2011-07-05
1
-3/+3
*
Close #12085: Fix an attribute error in subprocess.Popen destructor if the
Victor Stinner
2011-05-31
1
-1/+4
*
whitespace fix
Brian Curtin
2011-04-29
1
-1/+1
*
merge
Brian Curtin
2011-04-29
1
-2/+9
*
Issue #10963: Ensure that subprocess.communicate() never raises EPIPE.
Ross Lagerwall
2011-04-05
1
-11/+34
*
#11565: Fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti
2011-03-16
1
-1/+1
*
Merged revisions 87695 via svnmerge from
Antoine Pitrou
2011-01-03
1
-17/+24
*
Merged revisions 87233 via svnmerge from
Gregory P. Smith
2010-12-14
1
-2/+14
*
Merged revisions 84582 via svnmerge from
Brian Curtin
2010-09-07
1
-1/+1
*
Merged revisions 84559 via svnmerge from
Brian Curtin
2010-09-06
1
-1/+1
*
#2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu...
Tim Golden
2010-08-12
1
-2/+2
*
revert 83832; unix test breakage
Benjamin Peterson
2010-08-08
1
-1/+1
*
Issue #2304: Add additional quotes when using cmd shell on Windows. Original ...
Tim Golden
2010-08-08
1
-1/+1
*
Issue #3210: Revert C module changes and apply patch from Hirokazu Yamamoto i...
Tim Golden
2010-08-08
1
-14/+13
*
Issue #9265: Incorrect name passed as arg[0] when shell=True
Stefan Krah
2010-07-19
1
-0/+2
*
Revert r60115
Jean-Paul Calderone
2010-06-18
1
-3/+3
*
Fix regression introduced by r81154 (Issue #5099, subprocess destructor)
Victor Stinner
2010-05-14
1
-3/+3
*
subprocess.Popen.__del__ referenced global objects, which is a no-no thanks to
Brett Cannon
2010-05-14
1
-17/+34
*
Revert an accidental commit from r80492.
Brett Cannon
2010-04-25
1
-36/+17
*
When DeprecationWarning was silenced by default, it also silenced any use of -Q
Brett Cannon
2010-04-25
1
-17/+36
*
Fix #7838. Add docstrings and privatize _subprocess implementation details.
Brian Curtin
2010-04-24
1
-47/+39
*
Implement #1220212. Add os.kill support for Windows.
Brian Curtin
2010-04-02
1
-0/+4
*
Fix syntax: "rc != None" -> "rc is not None"
Florent Xicluna
2010-03-08
1
-1/+1
*
Issue #1068268: The subprocess module now handles EINTR in internal
Gregory P. Smith
2010-03-01
1
-3/+14
*
No need to assign the results of expressions used only for side effects.
Georg Brandl
2010-02-06
1
-1/+1
*
#7381: consistency update, and backport avoiding ``None >= 0`` check from py3k.
Georg Brandl
2009-12-28
1
-4/+6
*
#7381: subprocess documentation and library docstring consistency fixes.
Georg Brandl
2009-12-20
1
-9/+9
*
Issue 7294: Fixed URL in a comment.
Eric Smith
2009-11-09
1
-1/+3
*
#5329: fix os.popen* regression from 2.5: don't execute commands as a sequence
Philip Jenvey
2009-09-29
1
-15/+41
*
Revert r74028.
Georg Brandl
2009-07-16
1
-2/+2
*
#6482: simplify "except: raise" to "finally:".
Georg Brandl
2009-07-16
1
-2/+2
*
#6447: typo in subprocess docstring
Amaury Forgeot d'Arc
2009-07-10
1
-2/+2
*
#6416: Fix compilation of the select module on Windows, as well as test_subpr...
Amaury Forgeot d'Arc
2009-07-09
1
-5/+6
*
Use select.poll() in subprocess, when available, rather than select() so that
Gregory P. Smith
2009-07-04
1
-35/+96
[next]