Searched refs:Popen3 (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Doc/library/ |
D | popen2.rst | 33 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 …]
|
D | subprocess.rst | 891 :class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
|
/external/python/cpython2/Lib/ |
D | popen2.py | 34 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/ |
D | gtest_test_utils.py | 272 p = popen2.Popen3(command)
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/ |
D | shell.py | 213 proc = _popen2.Popen3(argv, False)
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/ |
D | shell.py | 213 proc = _popen2.Popen3(argv, False)
|
/external/python/cpython3/Doc/faq/ |
D | library.rst | 582 class Popen3: 587 Example: print(Popen3('grep spam','\n\nhere spam\n\n').out)
|
/external/python/cpython2/Doc/faq/ |
D | library.rst | 557 class Popen3: 562 Example: print Popen3('grep spam','\n\nhere spam\n\n').out
|
/external/python/cpython3/Doc/library/ |
D | subprocess.rst | 1387 :class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
|