Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge from 3.2: Fix placement of shell=True warning in subprocess.Popen() docs. | Chris Jerdonek | 2012-10-11 | 1 | -8/+8 |
|\ | |||||
| * | Fix placement of shell=True warning in subprocess.Popen() docs. | Chris Jerdonek | 2012-10-11 | 1 | -8/+8 |
| | | |||||
* | | Issue #16115: Merge subprocess.Popen() documentation improvements from 3.2. | Chris Jerdonek | 2012-10-11 | 1 | -17/+25 |
|\ \ | |/ | |||||
| * | Issue #16115: Make further improvements to subprocess.Popen() documentation. | Chris Jerdonek | 2012-10-11 | 1 | -17/+25 |
| | | |||||
* | | Issue #16115: Merge subprocess.Popen() documentation improvements from 3.2. | Chris Jerdonek | 2012-10-09 | 1 | -30/+35 |
|\ \ | |/ | |||||
| * | Issue #16115: Improve subprocess.Popen() documentation around args, shell, ↵ | Chris Jerdonek | 2012-10-09 | 1 | -30/+35 |
| | | | | | | | | and executable arguments. | ||||
* | | Issue #15533: Merge fix from 3.2. | Chris Jerdonek | 2012-09-30 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Issue #15533: Clarify docs and add tests for subprocess.Popen()'s cwd argument. | Chris Jerdonek | 2012-09-30 | 1 | -4/+4 |
| | | |||||
* | | #15789: merge with 3.2. | Ezio Melotti | 2012-09-15 | 1 | -3/+7 |
|\ \ | |/ | |||||
| * | #15789: mention shell-like parts of the stdlib in the subprocess docs. ↵ | Ezio Melotti | 2012-09-15 | 1 | -3/+7 |
| | | | | | | | | Patch by Chris Rebert. | ||||
* | | #15788: merge with 3.2. | Ezio Melotti | 2012-08-27 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | #15788: fix broken links in subprocess doc. Patch by Chris Rebert. | Ezio Melotti | 2012-08-27 | 1 | -2/+2 |
| | | |||||
* | | #15543: reflow paragraph. | R David Murray | 2012-08-15 | 1 | -9/+9 |
| | | |||||
* | | #15543: additional link in subprocess docs. | R David Murray | 2012-08-15 | 1 | -1/+2 |
| | | | | | | | | Patch by Chris Jerdonek. | ||||
* | | Merge #15543: glossary entry for and 'universal newlines', and links to it. | R David Murray | 2012-08-15 | 1 | -3/+6 |
|\ \ | |/ | | | | | Patch by Chris Jerdonek. | ||||
| * | #15543: glossary entry for and 'universal newlines', and links to it. | R David Murray | 2012-08-15 | 1 | -3/+6 |
| | | | | | | | | Patch by Chris Jerdonek. | ||||
* | | Issue #15561: Update subprocess docs to reference io.TextIOWrapper. | Andrew Svetlov | 2012-08-13 | 1 | -19/+27 |
|\ \ | |/ | | | | | Patch by Chris Jerdonek. | ||||
| * | Issue #15561: Update subprocess docs to reference io.TextIOWrapper. | Andrew Svetlov | 2012-08-13 | 1 | -19/+21 |
| | | | | | | | | Patch by Chris Jerdonek. | ||||
| * | Issue #15501: Document exception classes in subprocess module. | Andrew Svetlov | 2012-08-09 | 1 | -0/+20 |
| | | | | | | | | Initial patch by Anton Barkovsky. | ||||
* | | Issue #15501: Document exception classes in subprocess module. | Andrew Svetlov | 2012-08-09 | 1 | -0/+48 |
| | | | | | | | | Initial patch by Anton Barkovsky. | ||||
* | | Merge #14481: fix formatting of example in subprocess docs. | R David Murray | 2012-04-03 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #14481: fix formatting of example in subprocess docs. | R David Murray | 2012-04-03 | 1 | -1/+1 |
| | | |||||
* | | merge with 3.2 | Georg Brandl | 2012-02-23 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix markup errors. | Georg Brandl | 2012-02-23 | 1 | -1/+1 |
| | | |||||
* | | merge with 3.2 | Sandro Tosi | 2011-12-25 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | fix "Title underline too short" sphinx warning | Sandro Tosi | 2011-12-25 | 1 | -1/+1 |
| | | |||||
* | | merge with 3.2 | Sandro Tosi | 2011-12-25 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | fix Constuctor/Constructor typo; thanks to Anthon van der Neut from docs@ | Sandro Tosi | 2011-12-25 | 1 | -1/+1 |
| | | |||||
* | | Issue #13237: Forward port from 3.2 of subprocess documentation updates. ↵ | Nick Coghlan | 2011-11-08 | 1 | -186/+337 |
|\ \ | |/ | | | | | Needed quite a few adjustments to account for new features coming in 3.3 | ||||
| * | Issue #13237: Fix formatting error - the legacy shell commands weren't meant ↵ | Nick Coghlan | 2011-11-08 | 1 | -34/+33 |
| | | | | | | | | to be under the Notes heading | ||||
| * | Issue #13237: Remove duplicate data value descriptions from the subprocess docs | Nick Coghlan | 2011-11-08 | 1 | -14/+0 |
| | | |||||
| * | Issue #13237: Forward port subprocess module updates and explicitly document ↵ | Nick Coghlan | 2011-11-08 | 1 | -137/+303 |
| | | | | | | | | UTF-8 encoding assumption when universal_newlines=True | ||||
* | | Add shlex.quote function, to escape filenames and command lines (#9723). | Éric Araujo | 2011-07-27 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | | This function used to live as pipes.quote, where it was undocumented but used anyway. (An alias still exists for backward compatibility.) The tests have been moved as is, but the code of the function was changed to use a regex instead of a loop with string comparisons (at Ian Bicking’s suggestion). I’m terrible at regexes, so any feedback is welcome. | ||||
* | | Merge from 3.2 . Replace the term members with correct and appropriate ↵ | Senthil Kumaran | 2011-07-04 | 1 | -14/+15 |
|\ \ | |/ | | | | | terminology. Initial patch by Adam Woodbeck. | ||||
| * | issue10403 - Let's not use members anymore. Use 'attribute' where it denotes ↵ | Senthil Kumaran | 2011-07-04 | 1 | -14/+15 |
| | | | | | | | | attribute and 'methods' where it denotes methods. Context should clarify usage. | ||||
| * | merge - 7a3f3ad83676 Fixes Issue #12044. | Gregory P. Smith | 2011-05-12 | 1 | -2/+2 |
| | | |||||
* | | Update documentation to mention bytes instead byte string and correct one | Gregory P. Smith | 2011-05-23 | 1 | -3/+4 |
| | | | | | | | | mentioned string to the accurate description of what type is required. | ||||
* | | - Issue #12044: Fixed subprocess.Popen when used as a context manager to | Gregory P. Smith | 2011-05-12 | 1 | -2/+2 |
| | | | | | | | | | | wait for the process to end when exiting the context to avoid unintentionally leaving zombie processes around. | ||||
* | | Fix #11961. Document STARTUPINFO and creation flag options. | Brian Curtin | 2011-04-30 | 1 | -3/+107 |
|\ \ | |/ | |||||
| * | Fix #11961. Document STARTUPINFO and creation flag options. | Brian Curtin | 2011-04-30 | 1 | -3/+107 |
| |\ | |||||
| | * | whitespace... | Brian Curtin | 2011-04-30 | 1 | -3/+3 |
| | | | |||||
| | * | Fix #11961. Document STARTUPINFO and creation flag options. | Brian Curtin | 2011-04-30 | 1 | -3/+98 |
| | | | |||||
* | | | Merge with 3.2. | Ezio Melotti | 2011-04-19 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | Merge with 3.1. | Ezio Melotti | 2011-04-19 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | Fix wrong number of functions noticed by Sandro Tosi. | Ezio Melotti | 2011-04-19 | 1 | -1/+1 |
| | | | |||||
* | | | merge from 3.2 | Eli Bendersky | 2011-04-15 | 1 | -6/+38 |
|\ \ \ | |/ / | |||||
| * | | merge from 3.1 | Eli Bendersky | 2011-04-15 | 1 | -6/+38 |
| |\ \ | | |/ | |||||
| | * | Issue #11827: remove mention of list2cmdline in the doc of subprocess | Eli Bendersky | 2011-04-15 | 1 | -6/+37 |
| | | | |||||
| | * | Merged revisions 88352 via svnmerge from | Gregory P. Smith | 2011-02-05 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88352 | gregory.p.smith | 2011-02-05 13:47:25 -0800 (Sat, 05 Feb 2011) | 3 lines issue7678 - Properly document how to replace a shell pipeline so that SIGPIPE happens when the end exits before the beginning. ........ | ||||
| | * | Merged revisions 86419 via svnmerge from | R. David Murray | 2010-11-12 | 1 | -0/+18 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86419 | r.david.murray | 2010-11-11 19:35:31 -0500 (Thu, 11 Nov 2010) | 4 lines #7950: add warning about security implications of shell=True to subprocess docs Patch by Chris Rebert. ........ |