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.py277 p = popen2.Popen3(command)
/external/v8/testing/gtest/test/
Dgtest_test_utils.py277 p = popen2.Popen3(command)
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
Dgtest_test_utils.py277 p = popen2.Popen3(command)
/external/google-breakpad/src/testing/gtest/test/
Dgtest_test_utils.py262 p = popen2.Popen3(command)
/external/protobuf/gtest/test/
Dgtest_test_utils.py266 p = popen2.Popen3(command)
/external/python/cpython2/Doc/faq/
Dlibrary.rst557 class Popen3:
562 Example: print Popen3('grep spam','\n\nhere spam\n\n').out