Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge 3.4 (asyncio doc) | Victor Stinner | 2014-10-13 | 1 | -1/+1 |
|\ | |||||
| * | asyncio doc: rewrite subprocess doc | Victor Stinner | 2014-10-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add a new example using transport and protocol * rewrite the example using streams to make it much simpler (remove error handling, use a simpler Python code) * copy (and adapt) more documentation from the subprocess module: - add a note about Process.wait() deadlock - add a note about shell injection - etc. * sort Process methods and attributes in the same order than subprocess.Popen methods and attributes, so the documentation looks closer * list differences between Process and subprocess.Popen APIs | ||||
* | | Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line ↵ | Antoine Pitrou | 2014-09-21 | 1 | -6/+12 |
|\ \ | |/ | | | | | buffering, rather than block buffering. | ||||
| * | Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line ↵ | Antoine Pitrou | 2014-09-21 | 1 | -6/+12 |
| | | | | | | | | buffering, rather than block buffering. | ||||
* | | Merge: #21347: use string not list in shell=True example. | R David Murray | 2014-05-14 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #21347: use string not list in shell=True example. | R David Murray | 2014-05-14 | 1 | -1/+1 |
| | | | | | | | | Patch by Akira. | ||||
* | | merge from 3.4 - clean up the subprocess docs warning-soup and | Gregory P. Smith | 2014-05-11 | 1 | -93/+62 |
|\ \ | |/ | | | | | s/Unix/POSIX/. | ||||
| * | Change all references to Unix to POSIX in the subprocess docs. It's | Gregory P. Smith | 2014-05-11 | 1 | -14/+14 |
| | | | | | | | | more accurate and sounds less like a strange tale of yore. | ||||
| * | Remove the warning-soup from the subprocess documentation by adding | Gregory P. Smith | 2014-05-11 | 1 | -79/+48 |
| | | | | | | | | | | a Security Considerations section as preferred by both the devguide and documentation users who do not wish to go insane. | ||||
* | | Document the subprocess Popen.args attribute (issue21353) | Gregory P. Smith | 2014-04-29 | 1 | -0/+6 |
|\ \ | |/ | |||||
| * | Document the subprocess Popen.args attribute (issue21353) | Gregory P. Smith | 2014-04-29 | 1 | -0/+6 |
| |\ | |||||
| | * | Document the subprocess Popen.args attribute (issue21353) | Gregory P. Smith | 2014-04-29 | 1 | -0/+6 |
| | | | |||||
| * | | Merge in all documentation changes since branching 3.4.0rc1. | Larry Hastings | 2014-03-16 | 1 | -4/+19 |
| | | | |||||
| * | | merge 3.3 (#19060) | Benjamin Peterson | 2014-03-13 | 1 | -1/+1 |
| | | | |||||
* | | | #10481: describe universal_newlines' effect on communicate()/check_output() ↵ | Andrew Kuchling | 2014-04-14 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | output (alternately bytes or strings) Patch by Sam Kimbrel. | ||||
* | | | merge 3.3 (#19060) | Benjamin Peterson | 2014-03-13 | 1 | -1/+1 |
|\ \ \ | | |/ | |/| | |||||
| * | | remove unnecessary word (closes #19060) | Benjamin Peterson | 2014-03-13 | 1 | -1/+1 |
| | | | | | | | | | | | | Patch by Anastasia Filatova. | ||||
* | | | #10197: Update get[status]output versionchanged with actual version. | R David Murray | 2014-03-08 | 1 | -4/+8 |
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was perhaps on the border between a bug fix and a feature since the Python3 docs did not originally say it was unix only. However, the functions never worked anywhere but unix, and the docs were changed to say it was unix only well before the windows support was added. Unfortunately, windows support was added in 3.3.4 as well as 3.4. That leaves us in the uncomfortable position of needing the tag to say "version changed: 3.3.4" :( | ||||
| * | | #10197: Update get[status]output versionchanged with actual version. | R David Murray | 2014-03-08 | 1 | -4/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was perhaps on the border between a bug fix and a feature since the Python3 docs did not originally say it was unix only. However, the functions never worked anywhere but unix, and the docs were changed to say it was unix only well before the windows support was added. Unfortunately, windows support was added in 3.3.4 as well as 3.4. That leaves us in the uncomfortable position of needing the tag to say "version changed: 3.3.4" :( | ||||
* | | | subprocess.Popen.wait doc: mention asyncio to avoid busy loop | Victor Stinner | 2014-02-24 | 1 | -0/+6 |
| | | | |||||
* | | | Deprecate Popen.wait()'s undocumented endtime parameter. issue20572. | Gregory P. Smith | 2014-02-11 | 1 | -0/+5 |
| |/ |/| | |||||
* | | merge 3.3 | Benjamin Peterson | 2014-01-18 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | rm extra whitespace | Benjamin Peterson | 2014-01-18 | 1 | -1/+1 |
| | | |||||
* | | merge 3.3 | Benjamin Peterson | 2014-01-18 | 1 | -6/+6 |
|\ \ | |/ | |||||
| * | link to builtin open not io.open | Benjamin Peterson | 2014-01-18 | 1 | -6/+6 |
| | | |||||
* | | merge 3.3 (#17814) | Benjamin Peterson | 2014-01-18 | 1 | -8/+16 |
|\ \ | |/ | |||||
| * | describe type of Popen streams (closes #17814) | Benjamin Peterson | 2014-01-18 | 1 | -8/+16 |
| | | | | | | | | Patch more or less by Nikolaus Rath. | ||||
* | | Issue #19795: Improved markup of True/False constants. | Serhiy Storchaka | 2013-11-29 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #19795: Improved markup of True/False constants. | Serhiy Storchaka | 2013-11-29 | 1 | -2/+2 |
| | | |||||
* | | merge with 3.3 | Georg Brandl | 2013-11-26 | 1 | -1/+0 |
|\ \ | |/ | |||||
| * | Markup fix. | Georg Brandl | 2013-11-26 | 1 | -1/+0 |
| | | |||||
* | | merge with 3.3 | Georg Brandl | 2013-11-25 | 1 | -5/+5 |
|\ \ | |/ | |||||
| * | Closes #19622: clarify message about bufsize changes in 3.2.4 and 3.3.1. | Georg Brandl | 2013-11-25 | 1 | -5/+5 |
| | | |||||
* | | Issue #10197 Tweak docs for subprocess.getstatusoutput and align the ↵ | Tim Golden | 2013-11-05 | 1 | -3/+3 |
| | | | | | | | | documentation, the module docstring, and the function docstring. | ||||
* | | Issue #10197: Indicate availability of subprocess.get[status]output on ↵ | Tim Golden | 2013-11-03 | 1 | -6/+10 |
|\ \ | |/ | | | | | Windows and add a note about the effects of universal newlines | ||||
| * | Issue #10197: Indicate availability of subprocess.get[status]output on ↵ | Tim Golden | 2013-11-03 | 1 | -6/+10 |
| | | | | | | | | Windows and add a note about the effects of universal newlines | ||||
* | | Issue #18757: Improved cross-references in the concurrent package. | Serhiy Storchaka | 2013-08-23 | 1 | -9/+9 |
|\ \ | |/ | |||||
| * | Issue #18757: Improved cross-references in the concurrent package. | Serhiy Storchaka | 2013-08-23 | 1 | -9/+9 |
| | | |||||
* | | (3.3->default) Cleanup of documentation change from #17860 | Ronald Oussoren | 2013-07-07 | 1 | -4/+7 |
|\ \ | |/ | | | | | Reformulated the textual change, and applied it to the docstring as well. | ||||
| * | Cleanup of documentation change from #17860 | Ronald Oussoren | 2013-07-07 | 1 | -4/+7 |
| | | | | | | | | Reformulated the textual change, and applied it to the docstring as well. | ||||
* | | (3.3->default) Issue #17860: explicitly mention that std* streams are opened ↵ | Ronald Oussoren | 2013-07-06 | 1 | -2/+4 |
|\ \ | |/ | | | | | | | | | | | | | | | in binary mode by default. The documentation does mention that the streams are opened in text mode when univeral_newlines is true, but not that that they are opened in binary mode when that argument is false and that seems to confuse at least some users. | ||||
| * | Issue #17860: explicitly mention that std* streams are opened in binary mode ↵ | Ronald Oussoren | 2013-07-06 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | by default. The documentation does mention that the streams are opened in text mode when univeral_newlines is true, but not that that they are opened in binary mode when that argument is false and that seems to confuse at least some users. | ||||
* | | Issue #16624: `subprocess.check_output` now accepts an `input` argument, | Serhiy Storchaka | 2013-04-22 | 1 | -8/+18 |
| | | | | | | | | | | allowing the subprocess's stdin to be provided as a (byte) string. Patch by Zack Weinberg. | ||||
* | | Merge with 3.3. | Georg Brandl | 2013-03-28 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Closes #4159: add LaTeX tabular column specifications to tables that ↵ | Georg Brandl | 2013-03-28 | 1 | -0/+2 |
| | | | | | | | | otherwise are cut off or have overlapping text. | ||||
* | | Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value | Gregory P. Smith | 2013-03-23 | 1 | -10/+13 |
|\ \ | |/ | | | | | | | | | from unbuffered (0) to buffering (-1) to match the behavior existing code expects and match the behavior of the subprocess module in Python 2 to avoid introducing hard to track down bugs. | ||||
| * | Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value | Gregory P. Smith | 2013-03-23 | 1 | -10/+13 |
| |\ | | | | | | | | | | | | | | | | from unbuffered (0) to buffering (-1) to match the behavior existing code expects and match the behavior of the subprocess module in Python 2 to avoid introducing hard to track down bugs. | ||||
| | * | Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value | Gregory P. Smith | 2013-03-23 | 1 | -10/+13 |
| | | | | | | | | | | | | | | | | | | from unbuffered (0) to buffering (-1) to match the behavior existing code expects and match the behavior of the subprocess module in Python 2 to avoid introducing hard to track down bugs. | ||||
* | | | merge | Gregory P. Smith | 2013-03-21 | 1 | -5/+3 |
|\ \ \ | |/ / | |||||
| * | | merge | Gregory P. Smith | 2013-03-21 | 1 | -5/+3 |
| |\ \ | | |/ |