Home
last modified time | relevance | path

Searched refs:Popen3 (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Doc/library/
Dpopen2.rst33 the :meth:`poll` or :meth:`wait` methods on the :class:`Popen3` and
65 .. class:: Popen3(cmd[, capturestderr[, bufsize]])
67 This class represents a child process. Normally, :class:`Popen3` instances are
71 If not using one of the helper functions to create :class:`Popen3` objects, the
81 Similar to :class:`Popen3`, but always captures standard error into the same
90 Popen3 and Popen4 Objects
93 Instances of the :class:`Popen3` and :class:`Popen4` classes have the following
97 .. method:: Popen3.poll()
103 .. method:: Popen3.wait()
114 .. attribute:: Popen3.fromchild
[all …]
Dsubprocess.rst891 :class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
/external/python/cpython2/Lib/
Dpopen2.py34 class Popen3: class
116 class Popen4(Popen3):
139 del Popen3, Popen4
178 inst = Popen3(cmd, False, bufsize)
188 inst = Popen3(cmd, True, bufsize)
/external/googletest/googletest/test/
Dgtest_test_utils.py272 p = popen2.Popen3(command)
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
Dshell.py213 proc = _popen2.Popen3(argv, False)
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
Dshell.py213 proc = _popen2.Popen3(argv, False)
/external/python/cpython3/Doc/faq/
Dlibrary.rst582 class Popen3:
587 Example: print(Popen3('grep spam','\n\nhere spam\n\n').out)
/external/python/cpython2/Doc/faq/
Dlibrary.rst557 class Popen3:
562 Example: print Popen3('grep spam','\n\nhere spam\n\n').out
/external/python/cpython3/Doc/library/
Dsubprocess.rst1387 :class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as