File: popen2import.py

package info (click to toggle)
boa-constructor 0.4.4cvs20050714-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 10,080 kB
  • ctags: 9,175
  • sloc: python: 56,189; sh: 545; makefile: 40
file content (5 lines) | stat: -rw-r--r-- 126 bytes parent folder | download
1
2
3
4
5
import popen2

def popen3(cmd):
    inst = popen2.Popen3(cmd)
    return inst.fromchild, inst.tochild, inst.childerr, inst.pid