Georg Brandl
|
6ab5d083f2
|
#7381: subprocess documentation and library docstring consistency fixes.
|
2009-12-20 14:33:20 +00:00 |
Philip Jenvey
|
2627553afa
|
#7177: clarify the potential PIPE deadlock warnings
|
2009-12-03 02:25:54 +00:00 |
Philip Jenvey
|
8b9020458a
|
#5329: fix os.popen* regression from 2.5: don't execute commands as a sequence
through the shell. also document the correct subprocess replacement for this
case
patch from Jean-Paul Calderone and Jani Hakala
|
2009-09-29 19:10:15 +00:00 |
Georg Brandl
|
2e1285baee
|
#6481: fix typo in os.system() replacement.
|
2009-07-16 07:38:35 +00:00 |
Georg Brandl
|
0d8649a1c9
|
#6374: add a bit of explanation about shell=True on Windows.
|
2009-06-30 16:17:28 +00:00 |
R. David Murray
|
ccb9d4b21c
|
Issue 2947: document how return code handling translates from
os.popen to subprocess. Also fixes reference link in the
os.spawn documentation.
|
2009-06-09 00:44:22 +00:00 |
R. David Murray
|
fe6e784a9d
|
Issue 6141: document that the first item of args is still the
command name even when executable is specified.
|
2009-05-29 19:30:27 +00:00 |
Philip Jenvey
|
739aa36818
|
don't use subprocess.call with PIPEs as the child can fill the pipe buf and
deadlock. add a warning to subprocess docs about this, similar to Popen.wait's.
refs http://bugs.jython.org/issue1351
|
2009-05-22 05:35:32 +00:00 |
Georg Brandl
|
f6dab9542c
|
Make the doctests in the docs pass, except for those in the turtle module.
|
2009-04-28 21:48:35 +00:00 |
Georg Brandl
|
16a57f6a34
|
Demote warnings to notices where appropriate, following the goal that as few "red box" warnings
should clutter the docs as possible. Part 1: stuff that gets merged to Py3k.
|
2009-04-27 15:29:09 +00:00 |
R. David Murray
|
7203081025
|
Less red ink (warning->note) and add link to def of side-by-side assembly.
|
2009-04-16 18:12:53 +00:00 |
R. David Murray
|
6076d399b4
|
Fix for issue3440: add warning to subprocess discussion of
env parameter that on Windows SystemRoot is required in order
to run side-by-side assemblies.
|
2009-04-15 22:33:07 +00:00 |
Mark Dickinson
|
3e4caeb3bf
|
Issue #5341: Fix a variety of spelling errors.
|
2009-02-21 20:27:01 +00:00 |
Andrew M. Kuchling
|
42ffbdb903
|
Markup fixes
|
2009-01-21 02:16:26 +00:00 |
Georg Brandl
|
c62ef8b4d9
|
Remove trailing whitespace.
|
2009-01-03 20:55:06 +00:00 |
Georg Brandl
|
f5d5a66349
|
Follow-up to #4488: document PIPE and STDOUT properly.
|
2008-12-06 11:57:12 +00:00 |
Georg Brandl
|
5b5f273640
|
#4409: fix asterisks looking like footnotes.
|
2008-12-05 07:52:26 +00:00 |
Gregory P. Smith
|
26576801a6
|
rename the new check_call_output to check_output. its less ugly.
|
2008-12-05 02:27:01 +00:00 |
Georg Brandl
|
1743201364
|
Clarification to avoid confusing output with file descriptors.
|
2008-12-04 21:28:16 +00:00 |
Gregory P. Smith
|
97f49f4be7
|
Adds a subprocess.check_call_output() function to return the output from a
process on success or raise an exception on error.
|
2008-12-04 20:21:09 +00:00 |
Benjamin Peterson
|
cae5848f12
|
fix a small typo
|
2008-10-10 20:38:49 +00:00 |
Andrew M. Kuchling
|
cad8da8abd
|
Markup fixes. (optparse.rst probably needs an entire revision pass.)
|
2008-09-30 13:01:46 +00:00 |
Georg Brandl
|
9af9498c6e
|
Remove things specific to the old Macintosh, and spell "Mac OS X" consistently.
|
2008-09-13 17:41:16 +00:00 |
Gregory P. Smith
|
33ede08cdd
|
more cleanup ups of the recently added warnings in the subprocess docs.
|
2008-08-04 18:34:07 +00:00 |
Georg Brandl
|
143de623e7
|
Fix markup.
|
2008-08-04 06:29:36 +00:00 |
Gregory P. Smith
|
0879250284
|
issue1606: Add warnings to the subprocess documentation about common pitfalls
of using pipes that cause deadlocks.
|
2008-08-04 01:03:50 +00:00 |
Benjamin Peterson
|
fff5cf67d0
|
clarify Popen argument
|
2008-07-27 15:22:14 +00:00 |
Georg Brandl
|
68b4e74a8d
|
Add a link to PEP 324.
|
2008-07-01 19:59:00 +00:00 |
Georg Brandl
|
8bd05191fa
|
#3085: Fix syntax error.
|
2008-06-22 18:11:52 +00:00 |
Georg Brandl
|
0ba92b24b7
|
Turn section references into proper cross-references.
|
2008-06-22 09:05:29 +00:00 |
Andrew M. Kuchling
|
64c6a0ef6e
|
Markup fix
|
2008-04-21 02:08:00 +00:00 |
Georg Brandl
|
f801b0f04c
|
#2633: clarify meaning of env parameter.
|
2008-04-19 16:58:49 +00:00 |
Georg Brandl
|
734de68dd5
|
Fix-up docs for revision 62386.
|
2008-04-19 08:23:59 +00:00 |
Christian Heimes
|
e74c8f2879
|
Added kill, terminate and send_signal to subprocess.Popen
The bits and pieces for the Windows side were already in place. The POSIX side is trivial (as usual) and uses os.kill().
|
2008-04-19 02:23:57 +00:00 |
Georg Brandl
|
2cb103ffa9
|
#1727024: document that Popen.returncode is set by Popen.poll/wait.
|
2008-01-06 16:01:26 +00:00 |
Georg Brandl
|
439f250c00
|
#1344: document that you need to open std{in,out,err} with PIPE if you want
communicate() to work as described.
|
2007-11-24 11:31:46 +00:00 |
Georg Brandl
|
8ec7f65613
|
Move the 2.6 reST doc tree in place.
|
2007-08-15 14:28:01 +00:00 |