Revision history of "Python - subprocess Module"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 14:35, 30 August 2008PeterHarding talk contribs 241 bytes +241 New page: =Overview= <pre> from subprocess import Popen,PIPE 3 4 p = Popen(file, shell=True,stdout=PIPE,stderr=PIPE) 5 out = string.join(p.stdout.readlines() ) 6 outerr = string.jo...