2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
:mod:`subprocess` --- Subprocess management
|
|
|
|
===========================================
|
|
|
|
|
|
|
|
.. module:: subprocess
|
|
|
|
:synopsis: Subprocess management.
|
|
|
|
.. moduleauthor:: Peter Åstrand <astrand@lysator.liu.se>
|
|
|
|
.. sectionauthor:: Peter Åstrand <astrand@lysator.liu.se>
|
|
|
|
|
|
|
|
|
|
|
|
The :mod:`subprocess` module allows you to spawn new processes, connect to their
|
|
|
|
input/output/error pipes, and obtain their return codes. This module intends to
|
|
|
|
replace several other, older modules and functions, such as::
|
|
|
|
|
|
|
|
os.system
|
|
|
|
os.spawn*
|
|
|
|
commands.*
|
|
|
|
|
|
|
|
Information about how the :mod:`subprocess` module can be used to replace these
|
|
|
|
modules and functions can be found in the following sections.
|
|
|
|
|
|
|
|
|
|
|
|
Using the subprocess Module
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
This module defines one class called :class:`Popen`:
|
|
|
|
|
|
|
|
|
|
|
|
.. class:: Popen(args, bufsize=0, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, close_fds=False, shell=False, cwd=None, env=None, universal_newlines=False, startupinfo=None, creationflags=0)
|
|
|
|
|
|
|
|
Arguments are:
|
|
|
|
|
|
|
|
*args* should be a string, or a sequence of program arguments. The program to
|
|
|
|
execute is normally the first item in the args sequence or string, but can be
|
|
|
|
explicitly set by using the executable argument.
|
|
|
|
|
|
|
|
On Unix, with *shell=False* (default): In this case, the Popen class uses
|
|
|
|
:meth:`os.execvp` to execute the child program. *args* should normally be a
|
|
|
|
sequence. A string will be treated as a sequence with the string as the only
|
|
|
|
item (the program to execute).
|
|
|
|
|
|
|
|
On Unix, with *shell=True*: If args is a string, it specifies the command string
|
|
|
|
to execute through the shell. If *args* is a sequence, the first item specifies
|
|
|
|
the command string, and any additional items will be treated as additional shell
|
|
|
|
arguments.
|
|
|
|
|
|
|
|
On Windows: the :class:`Popen` class uses CreateProcess() to execute the child
|
|
|
|
program, which operates on strings. If *args* is a sequence, it will be
|
|
|
|
converted to a string using the :meth:`list2cmdline` method. Please note that
|
|
|
|
not all MS Windows applications interpret the command line the same way:
|
|
|
|
:meth:`list2cmdline` is designed for applications using the same rules as the MS
|
|
|
|
C runtime.
|
|
|
|
|
|
|
|
*bufsize*, if given, has the same meaning as the corresponding argument to the
|
|
|
|
built-in open() function: :const:`0` means unbuffered, :const:`1` means line
|
|
|
|
buffered, any other positive value means use a buffer of (approximately) that
|
|
|
|
size. A negative *bufsize* means to use the system default, which usually means
|
|
|
|
fully buffered. The default value for *bufsize* is :const:`0` (unbuffered).
|
|
|
|
|
|
|
|
The *executable* argument specifies the program to execute. It is very seldom
|
|
|
|
needed: Usually, the program to execute is defined by the *args* argument. If
|
|
|
|
``shell=True``, the *executable* argument specifies which shell to use. On Unix,
|
|
|
|
the default shell is :file:`/bin/sh`. On Windows, the default shell is
|
|
|
|
specified by the :envvar:`COMSPEC` environment variable.
|
|
|
|
|
|
|
|
*stdin*, *stdout* and *stderr* specify the executed programs' standard input,
|
|
|
|
standard output and standard error file handles, respectively. Valid values are
|
|
|
|
``PIPE``, an existing file descriptor (a positive integer), an existing file
|
|
|
|
object, and ``None``. ``PIPE`` indicates that a new pipe to the child should be
|
|
|
|
created. With ``None``, no redirection will occur; the child's file handles
|
|
|
|
will be inherited from the parent. Additionally, *stderr* can be ``STDOUT``,
|
|
|
|
which indicates that the stderr data from the applications should be captured
|
|
|
|
into the same file handle as for stdout.
|
|
|
|
|
|
|
|
If *preexec_fn* is set to a callable object, this object will be called in the
|
|
|
|
child process just before the child is executed. (Unix only)
|
|
|
|
|
|
|
|
If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and
|
|
|
|
:const:`2` will be closed before the child process is executed. (Unix only).
|
|
|
|
Or, on Windows, if *close_fds* is true then no handles will be inherited by the
|
|
|
|
child process. Note that on Windows, you cannot set *close_fds* to true and
|
|
|
|
also redirect the standard handles by setting *stdin*, *stdout* or *stderr*.
|
|
|
|
|
|
|
|
If *shell* is :const:`True`, the specified command will be executed through the
|
|
|
|
shell.
|
|
|
|
|
|
|
|
If *cwd* is not ``None``, the child's current directory will be changed to *cwd*
|
|
|
|
before it is executed. Note that this directory is not considered when
|
|
|
|
searching the executable, so you can't specify the program's path relative to
|
|
|
|
*cwd*.
|
|
|
|
|
|
|
|
If *env* is not ``None``, it defines the environment variables for the new
|
|
|
|
process.
|
|
|
|
|
|
|
|
If *universal_newlines* is :const:`True`, the file objects stdout and stderr are
|
|
|
|
opened as text files, but lines may be terminated by any of ``'\n'``, the Unix
|
|
|
|
end-of-line convention, ``'\r'``, the Macintosh convention or ``'\r\n'``, the
|
|
|
|
Windows convention. All of these external representations are seen as ``'\n'``
|
|
|
|
by the Python program.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
This feature is only available if Python is built with universal newline support
|
|
|
|
(the default). Also, the newlines attribute of the file objects :attr:`stdout`,
|
|
|
|
:attr:`stdin` and :attr:`stderr` are not updated by the communicate() method.
|
|
|
|
|
|
|
|
The *startupinfo* and *creationflags*, if given, will be passed to the
|
|
|
|
underlying CreateProcess() function. They can specify things such as appearance
|
|
|
|
of the main window and priority for the new process. (Windows only)
|
|
|
|
|
|
|
|
|
|
|
|
Convenience Functions
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
This module also defines two shortcut functions:
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: call(*popenargs, **kwargs)
|
|
|
|
|
|
|
|
Run command with arguments. Wait for command to complete, then return the
|
|
|
|
:attr:`returncode` attribute.
|
|
|
|
|
|
|
|
The arguments are the same as for the Popen constructor. Example::
|
|
|
|
|
|
|
|
retcode = call(["ls", "-l"])
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: check_call(*popenargs, **kwargs)
|
|
|
|
|
|
|
|
Run command with arguments. Wait for command to complete. If the exit code was
|
|
|
|
zero then return, otherwise raise :exc:`CalledProcessError.` The
|
|
|
|
:exc:`CalledProcessError` object will have the return code in the
|
|
|
|
:attr:`returncode` attribute.
|
|
|
|
|
|
|
|
The arguments are the same as for the Popen constructor. Example::
|
|
|
|
|
|
|
|
check_call(["ls", "-l"])
|
|
|
|
|
|
|
|
|
|
|
|
Exceptions
|
|
|
|
^^^^^^^^^^
|
|
|
|
|
|
|
|
Exceptions raised in the child process, before the new program has started to
|
|
|
|
execute, will be re-raised in the parent. Additionally, the exception object
|
|
|
|
will have one extra attribute called :attr:`child_traceback`, which is a string
|
|
|
|
containing traceback information from the childs point of view.
|
|
|
|
|
|
|
|
The most common exception raised is :exc:`OSError`. This occurs, for example,
|
|
|
|
when trying to execute a non-existent file. Applications should prepare for
|
|
|
|
:exc:`OSError` exceptions.
|
|
|
|
|
|
|
|
A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid
|
|
|
|
arguments.
|
|
|
|
|
|
|
|
check_call() will raise :exc:`CalledProcessError`, if the called process returns
|
|
|
|
a non-zero return code.
|
|
|
|
|
|
|
|
|
|
|
|
Security
|
|
|
|
^^^^^^^^
|
|
|
|
|
|
|
|
Unlike some other popen functions, this implementation will never call /bin/sh
|
|
|
|
implicitly. This means that all characters, including shell metacharacters, can
|
|
|
|
safely be passed to child processes.
|
|
|
|
|
|
|
|
|
|
|
|
Popen Objects
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Instances of the :class:`Popen` class have the following methods:
|
|
|
|
|
|
|
|
|
|
|
|
.. method:: Popen.poll()
|
|
|
|
|
Merged revisions 59774-59783 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59774 | georg.brandl | 2008-01-06 16:41:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1501: document that 0**0 == 1.
........
r59775 | georg.brandl | 2008-01-06 16:48:20 +0100 (Sun, 06 Jan 2008) | 2 lines
#759525: document that dir() doesn't return metaclass attrs when given a class as arg.
........
r59776 | georg.brandl | 2008-01-06 16:55:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1615275: clarify return object types of different tempfile factories.
........
r59777 | georg.brandl | 2008-01-06 17:01:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1727024: document that Popen.returncode is set by Popen.poll/wait.
........
r59778 | georg.brandl | 2008-01-06 17:04:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1686390: add example for csv.Sniffer use.
........
r59779 | georg.brandl | 2008-01-06 17:12:39 +0100 (Sun, 06 Jan 2008) | 2 lines
#1559684: document that shutil.copy* doesn't copy all metadata on Posix and Windows too.
........
r59780 | georg.brandl | 2008-01-06 17:17:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1582: document __reversed__, patch by Mark Russell.
........
r59781 | georg.brandl | 2008-01-06 17:22:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1499: Document compile() exceptions.
........
r59782 | georg.brandl | 2008-01-06 17:49:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1325: Add docs and tests for zipimporter.archive and zipimporter.prefix.
........
2008-01-06 13:05:40 -04:00
|
|
|
Check if child process has terminated. Set and return :attr:`returncode`
|
|
|
|
attribute.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. method:: Popen.wait()
|
|
|
|
|
Merged revisions 59774-59783 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59774 | georg.brandl | 2008-01-06 16:41:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1501: document that 0**0 == 1.
........
r59775 | georg.brandl | 2008-01-06 16:48:20 +0100 (Sun, 06 Jan 2008) | 2 lines
#759525: document that dir() doesn't return metaclass attrs when given a class as arg.
........
r59776 | georg.brandl | 2008-01-06 16:55:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1615275: clarify return object types of different tempfile factories.
........
r59777 | georg.brandl | 2008-01-06 17:01:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1727024: document that Popen.returncode is set by Popen.poll/wait.
........
r59778 | georg.brandl | 2008-01-06 17:04:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1686390: add example for csv.Sniffer use.
........
r59779 | georg.brandl | 2008-01-06 17:12:39 +0100 (Sun, 06 Jan 2008) | 2 lines
#1559684: document that shutil.copy* doesn't copy all metadata on Posix and Windows too.
........
r59780 | georg.brandl | 2008-01-06 17:17:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1582: document __reversed__, patch by Mark Russell.
........
r59781 | georg.brandl | 2008-01-06 17:22:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1499: Document compile() exceptions.
........
r59782 | georg.brandl | 2008-01-06 17:49:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1325: Add docs and tests for zipimporter.archive and zipimporter.prefix.
........
2008-01-06 13:05:40 -04:00
|
|
|
Wait for child process to terminate. Set and return :attr:`returncode`
|
|
|
|
attribute.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. method:: Popen.communicate(input=None)
|
|
|
|
|
|
|
|
Interact with process: Send data to stdin. Read data from stdout and stderr,
|
|
|
|
until end-of-file is reached. Wait for process to terminate. The optional
|
|
|
|
*input* argument should be a string to be sent to the child process, or
|
|
|
|
``None``, if no data should be sent to the child.
|
|
|
|
|
Merged revisions 59774-59783 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59774 | georg.brandl | 2008-01-06 16:41:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1501: document that 0**0 == 1.
........
r59775 | georg.brandl | 2008-01-06 16:48:20 +0100 (Sun, 06 Jan 2008) | 2 lines
#759525: document that dir() doesn't return metaclass attrs when given a class as arg.
........
r59776 | georg.brandl | 2008-01-06 16:55:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1615275: clarify return object types of different tempfile factories.
........
r59777 | georg.brandl | 2008-01-06 17:01:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1727024: document that Popen.returncode is set by Popen.poll/wait.
........
r59778 | georg.brandl | 2008-01-06 17:04:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1686390: add example for csv.Sniffer use.
........
r59779 | georg.brandl | 2008-01-06 17:12:39 +0100 (Sun, 06 Jan 2008) | 2 lines
#1559684: document that shutil.copy* doesn't copy all metadata on Posix and Windows too.
........
r59780 | georg.brandl | 2008-01-06 17:17:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1582: document __reversed__, patch by Mark Russell.
........
r59781 | georg.brandl | 2008-01-06 17:22:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1499: Document compile() exceptions.
........
r59782 | georg.brandl | 2008-01-06 17:49:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1325: Add docs and tests for zipimporter.archive and zipimporter.prefix.
........
2008-01-06 13:05:40 -04:00
|
|
|
:meth:`communicate` returns a tuple ``(stdout, stderr)``.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
Merged revisions 59107-59186 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
(Note: some conflicts in the PCbuild9 directory reverted. Sorry Christian!)
........
r59120 | christian.heimes | 2007-11-22 03:21:16 -0800 (Thu, 22 Nov 2007) | 3 lines
Backport of the PCbuild9 directory from the py3k branch.
I've finished the last task for the PCbuild9 directory today. I don't think there is much left to do. Now you can all play around with the shiny new VS 2008 and try the PGO builds. I was able to get a speed improvement of about 10% on py3k.
Have fun! :)
........
r59126 | brett.cannon | 2007-11-22 16:06:51 -0800 (Thu, 22 Nov 2007) | 2 lines
Fix a bug in the test for using __loader__.get_data().
........
r59131 | christian.heimes | 2007-11-22 23:05:03 -0800 (Thu, 22 Nov 2007) | 1 line
Backport of PCbuild9 fixes from py3k r59130
........
r59132 | christian.heimes | 2007-11-23 01:10:36 -0800 (Fri, 23 Nov 2007) | 2 lines
Applied patch #1754273 and #1754271 from Thomas Glee
The patches are adding deprecation warnings for back ticks and <>
........
r59133 | christian.heimes | 2007-11-23 04:12:02 -0800 (Fri, 23 Nov 2007) | 2 lines
Fixed problems in the last commit. Filenames and line numbers weren't reported correctly.
Backquotes still don't report the correct file. The AST nodes only contain the line number but not the file name.
........
r59134 | christian.heimes | 2007-11-23 04:16:35 -0800 (Fri, 23 Nov 2007) | 1 line
How did the comment get there?
........
r59135 | christian.heimes | 2007-11-23 05:25:31 -0800 (Fri, 23 Nov 2007) | 1 line
And yet another fix for the patch. Paul Moore has send me a note that I've missed a declaration. The additional code has moved the declaration in the middle of the block.
........
r59136 | andrew.kuchling | 2007-11-23 05:37:39 -0800 (Fri, 23 Nov 2007) | 1 line
Add item
........
r59137 | skip.montanaro | 2007-11-23 09:08:35 -0800 (Fri, 23 Nov 2007) | 2 lines
Make trace and doctest play nice together (issue 1429818). Will backport.
........
r59139 | skip.montanaro | 2007-11-23 09:12:47 -0800 (Fri, 23 Nov 2007) | 1 line
issue 1429818
........
r59144 | facundo.batista | 2007-11-23 09:59:00 -0800 (Fri, 23 Nov 2007) | 10 lines
Major change in the internal structure of the Decimal
number: now it does not store the mantissa as a tuple
of numbers, but as a string.
This avoids a lot of conversions, and achieves a
speedup of 40%. The API remains intact.
Thanks Mark Dickinson.
........
r59146 | facundo.batista | 2007-11-23 10:14:50 -0800 (Fri, 23 Nov 2007) | 3 lines
Test cases from Cowlishaw, v2.57. All are pased cleanly.
........
r59156 | christian.heimes | 2007-11-23 17:36:02 -0800 (Fri, 23 Nov 2007) | 2 lines
Added filename to compiling struct based on Martin's suggestion.
I'm wonder why I was trying to add the filename to the node all the time. The compiling struct is more obvious.
........
r59158 | christian.heimes | 2007-11-23 17:53:59 -0800 (Fri, 23 Nov 2007) | 2 lines
Backport of fixes from py3k branch
svn merge -r59131:HEAD ../../py3k/PCbuild9/ .
........
r59159 | skip.montanaro | 2007-11-23 20:29:08 -0800 (Fri, 23 Nov 2007) | 1 line
revert change that breaks test_doctest (which I forgot to run - sorry)
........
r59162 | skip.montanaro | 2007-11-23 20:31:15 -0800 (Fri, 23 Nov 2007) | 1 line
revert
........
r59164 | georg.brandl | 2007-11-24 03:31:46 -0800 (Sat, 24 Nov 2007) | 3 lines
#1344: document that you need to open std{in,out,err} with PIPE if you want
communicate() to work as described.
........
r59165 | georg.brandl | 2007-11-24 03:39:13 -0800 (Sat, 24 Nov 2007) | 2 lines
#1467: fix documentation for TestResult.add{Error,Failure}.
........
r59166 | georg.brandl | 2007-11-24 03:42:14 -0800 (Sat, 24 Nov 2007) | 2 lines
#1355: remove mention of PyXML from xml.dom docs.
........
r59169 | amaury.forgeotdarc | 2007-11-24 05:20:22 -0800 (Sat, 24 Nov 2007) | 2 lines
Warning "<> not supported in 3.x" should be enabled only when the -3 option is set.
........
r59170 | amaury.forgeotdarc | 2007-11-24 05:44:17 -0800 (Sat, 24 Nov 2007) | 3 lines
Issue #1445: Fix a SystemError when accessing the ``cell_contents``
attribute of an empty cell object. Now a ValueError is raised.
........
r59172 | georg.brandl | 2007-11-24 05:56:09 -0800 (Sat, 24 Nov 2007) | 3 lines
#1735632: add O_NOATIME constant to os module.
Also document a few other O_ constants that were missing from documentation.
........
r59173 | skip.montanaro | 2007-11-24 06:30:47 -0800 (Sat, 24 Nov 2007) | 1 line
back in these go - thanks to Titus Brown for the fix
........
r59176 | martin.v.loewis | 2007-11-24 10:33:40 -0800 (Sat, 24 Nov 2007) | 2 lines
Bug #1494: Document that appendChild removes first.
........
r59186 | guido.van.rossum | 2007-11-26 14:16:49 -0800 (Mon, 26 Nov 2007) | 2 lines
A thread-less variant of brownian.py, submitted by Michele Simoniato.
........
2007-11-26 19:23:18 -04:00
|
|
|
Note that if you want to send data to the process's stdin, you need to create
|
|
|
|
the Popen object with ``stdin=PIPE``. Similarly, to get anything other than
|
|
|
|
``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or
|
|
|
|
``stderr=PIPE`` too.
|
|
|
|
|
Merged revisions 59774-59783 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59774 | georg.brandl | 2008-01-06 16:41:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1501: document that 0**0 == 1.
........
r59775 | georg.brandl | 2008-01-06 16:48:20 +0100 (Sun, 06 Jan 2008) | 2 lines
#759525: document that dir() doesn't return metaclass attrs when given a class as arg.
........
r59776 | georg.brandl | 2008-01-06 16:55:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1615275: clarify return object types of different tempfile factories.
........
r59777 | georg.brandl | 2008-01-06 17:01:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1727024: document that Popen.returncode is set by Popen.poll/wait.
........
r59778 | georg.brandl | 2008-01-06 17:04:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1686390: add example for csv.Sniffer use.
........
r59779 | georg.brandl | 2008-01-06 17:12:39 +0100 (Sun, 06 Jan 2008) | 2 lines
#1559684: document that shutil.copy* doesn't copy all metadata on Posix and Windows too.
........
r59780 | georg.brandl | 2008-01-06 17:17:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1582: document __reversed__, patch by Mark Russell.
........
r59781 | georg.brandl | 2008-01-06 17:22:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1499: Document compile() exceptions.
........
r59782 | georg.brandl | 2008-01-06 17:49:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1325: Add docs and tests for zipimporter.archive and zipimporter.prefix.
........
2008-01-06 13:05:40 -04:00
|
|
|
.. note::
|
2007-08-15 11:28:22 -03:00
|
|
|
|
Merged revisions 59774-59783 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59774 | georg.brandl | 2008-01-06 16:41:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1501: document that 0**0 == 1.
........
r59775 | georg.brandl | 2008-01-06 16:48:20 +0100 (Sun, 06 Jan 2008) | 2 lines
#759525: document that dir() doesn't return metaclass attrs when given a class as arg.
........
r59776 | georg.brandl | 2008-01-06 16:55:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1615275: clarify return object types of different tempfile factories.
........
r59777 | georg.brandl | 2008-01-06 17:01:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1727024: document that Popen.returncode is set by Popen.poll/wait.
........
r59778 | georg.brandl | 2008-01-06 17:04:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1686390: add example for csv.Sniffer use.
........
r59779 | georg.brandl | 2008-01-06 17:12:39 +0100 (Sun, 06 Jan 2008) | 2 lines
#1559684: document that shutil.copy* doesn't copy all metadata on Posix and Windows too.
........
r59780 | georg.brandl | 2008-01-06 17:17:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1582: document __reversed__, patch by Mark Russell.
........
r59781 | georg.brandl | 2008-01-06 17:22:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1499: Document compile() exceptions.
........
r59782 | georg.brandl | 2008-01-06 17:49:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1325: Add docs and tests for zipimporter.archive and zipimporter.prefix.
........
2008-01-06 13:05:40 -04:00
|
|
|
The data read is buffered in memory, so do not use this method if the data
|
|
|
|
size is large or unlimited.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
Merged revisions 59774-59783 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59774 | georg.brandl | 2008-01-06 16:41:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1501: document that 0**0 == 1.
........
r59775 | georg.brandl | 2008-01-06 16:48:20 +0100 (Sun, 06 Jan 2008) | 2 lines
#759525: document that dir() doesn't return metaclass attrs when given a class as arg.
........
r59776 | georg.brandl | 2008-01-06 16:55:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1615275: clarify return object types of different tempfile factories.
........
r59777 | georg.brandl | 2008-01-06 17:01:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1727024: document that Popen.returncode is set by Popen.poll/wait.
........
r59778 | georg.brandl | 2008-01-06 17:04:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1686390: add example for csv.Sniffer use.
........
r59779 | georg.brandl | 2008-01-06 17:12:39 +0100 (Sun, 06 Jan 2008) | 2 lines
#1559684: document that shutil.copy* doesn't copy all metadata on Posix and Windows too.
........
r59780 | georg.brandl | 2008-01-06 17:17:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1582: document __reversed__, patch by Mark Russell.
........
r59781 | georg.brandl | 2008-01-06 17:22:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1499: Document compile() exceptions.
........
r59782 | georg.brandl | 2008-01-06 17:49:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1325: Add docs and tests for zipimporter.archive and zipimporter.prefix.
........
2008-01-06 13:05:40 -04:00
|
|
|
The following attributes are also available:
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
.. attribute:: Popen.stdin
|
|
|
|
|
|
|
|
If the *stdin* argument is ``PIPE``, this attribute is a file object that
|
|
|
|
provides input to the child process. Otherwise, it is ``None``.
|
|
|
|
|
|
|
|
|
|
|
|
.. attribute:: Popen.stdout
|
|
|
|
|
|
|
|
If the *stdout* argument is ``PIPE``, this attribute is a file object that
|
|
|
|
provides output from the child process. Otherwise, it is ``None``.
|
|
|
|
|
|
|
|
|
|
|
|
.. attribute:: Popen.stderr
|
|
|
|
|
|
|
|
If the *stderr* argument is ``PIPE``, this attribute is file object that
|
|
|
|
provides error output from the child process. Otherwise, it is ``None``.
|
|
|
|
|
|
|
|
|
|
|
|
.. attribute:: Popen.pid
|
|
|
|
|
|
|
|
The process ID of the child process.
|
|
|
|
|
|
|
|
|
|
|
|
.. attribute:: Popen.returncode
|
|
|
|
|
Merged revisions 59774-59783 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59774 | georg.brandl | 2008-01-06 16:41:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1501: document that 0**0 == 1.
........
r59775 | georg.brandl | 2008-01-06 16:48:20 +0100 (Sun, 06 Jan 2008) | 2 lines
#759525: document that dir() doesn't return metaclass attrs when given a class as arg.
........
r59776 | georg.brandl | 2008-01-06 16:55:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1615275: clarify return object types of different tempfile factories.
........
r59777 | georg.brandl | 2008-01-06 17:01:26 +0100 (Sun, 06 Jan 2008) | 2 lines
#1727024: document that Popen.returncode is set by Popen.poll/wait.
........
r59778 | georg.brandl | 2008-01-06 17:04:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1686390: add example for csv.Sniffer use.
........
r59779 | georg.brandl | 2008-01-06 17:12:39 +0100 (Sun, 06 Jan 2008) | 2 lines
#1559684: document that shutil.copy* doesn't copy all metadata on Posix and Windows too.
........
r59780 | georg.brandl | 2008-01-06 17:17:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1582: document __reversed__, patch by Mark Russell.
........
r59781 | georg.brandl | 2008-01-06 17:22:56 +0100 (Sun, 06 Jan 2008) | 2 lines
#1499: Document compile() exceptions.
........
r59782 | georg.brandl | 2008-01-06 17:49:50 +0100 (Sun, 06 Jan 2008) | 2 lines
#1325: Add docs and tests for zipimporter.archive and zipimporter.prefix.
........
2008-01-06 13:05:40 -04:00
|
|
|
The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly
|
|
|
|
by :meth:`communicate`). A ``None`` value indicates that the process
|
|
|
|
hasn't terminated yet.
|
|
|
|
|
|
|
|
A negative value ``-N`` indicates that the child was terminated by signal
|
|
|
|
``N`` (Unix only).
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
Replacing Older Functions with the subprocess Module
|
|
|
|
----------------------------------------------------
|
|
|
|
|
|
|
|
In this section, "a ==> b" means that b can be used as a replacement for a.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
All functions in this section fail (more or less) silently if the executed
|
|
|
|
program cannot be found; this module raises an :exc:`OSError` exception.
|
|
|
|
|
|
|
|
In the following examples, we assume that the subprocess module is imported with
|
|
|
|
"from subprocess import \*".
|
|
|
|
|
|
|
|
|
|
|
|
Replacing /bin/sh shell backquote
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
output=`mycmd myarg`
|
|
|
|
==>
|
|
|
|
output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
|
|
|
|
|
|
|
|
|
|
|
|
Replacing shell pipe line
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
output=`dmesg | grep hda`
|
|
|
|
==>
|
|
|
|
p1 = Popen(["dmesg"], stdout=PIPE)
|
|
|
|
p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
|
|
|
|
output = p2.communicate()[0]
|
|
|
|
|
|
|
|
|
|
|
|
Replacing os.system()
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
sts = os.system("mycmd" + " myarg")
|
|
|
|
==>
|
|
|
|
p = Popen("mycmd" + " myarg", shell=True)
|
|
|
|
sts = os.waitpid(p.pid, 0)
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
* Calling the program through the shell is usually not required.
|
|
|
|
|
|
|
|
* It's easier to look at the :attr:`returncode` attribute than the exit status.
|
|
|
|
|
|
|
|
A more realistic example would look like this::
|
|
|
|
|
|
|
|
try:
|
|
|
|
retcode = call("mycmd" + " myarg", shell=True)
|
|
|
|
if retcode < 0:
|
2007-09-01 20:34:30 -03:00
|
|
|
print("Child was terminated by signal", -retcode, file=sys.stderr)
|
2007-08-15 11:28:22 -03:00
|
|
|
else:
|
2007-09-01 20:34:30 -03:00
|
|
|
print("Child returned", retcode, file=sys.stderr)
|
2007-08-15 11:28:22 -03:00
|
|
|
except OSError as e:
|
2007-09-01 20:34:30 -03:00
|
|
|
print("Execution failed:", e, file=sys.stderr)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
Replacing os.spawn\*
|
|
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
P_NOWAIT example::
|
|
|
|
|
|
|
|
pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
|
|
|
|
==>
|
|
|
|
pid = Popen(["/bin/mycmd", "myarg"]).pid
|
|
|
|
|
|
|
|
P_WAIT example::
|
|
|
|
|
|
|
|
retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
|
|
|
|
==>
|
|
|
|
retcode = call(["/bin/mycmd", "myarg"])
|
|
|
|
|
|
|
|
Vector example::
|
|
|
|
|
|
|
|
os.spawnvp(os.P_NOWAIT, path, args)
|
|
|
|
==>
|
|
|
|
Popen([path] + args[1:])
|
|
|
|
|
|
|
|
Environment example::
|
|
|
|
|
|
|
|
os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
|
|
|
|
==>
|
|
|
|
Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
|
|
|
|
|
|
|
|
|
|
|
|
Replacing os.popen\*
|
|
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
pipe = os.popen(cmd, mode='r', bufsize)
|
|
|
|
==>
|
|
|
|
pipe = Popen(cmd, shell=True, bufsize=bufsize, stdout=PIPE).stdout
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
pipe = os.popen(cmd, mode='w', bufsize)
|
|
|
|
==>
|
|
|
|
pipe = Popen(cmd, shell=True, bufsize=bufsize, stdin=PIPE).stdin
|
|
|
|
|