Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > ea5e142f051ddd9f14832e0874ff8c4a > files > 9

python-cpopen-1.2.3-2.fc18.i686.rpm

# CPopen

A C reimplementation of the tricky bits of Python's Popen.

It is currently implemented in a very specific way and might break under
general use.

# TODO

* Support string invocation - Currently only support array invocation
* Support after fork func
* Support all stream modes - Currently everything has to be PIPE

# Usage

```{.python}
import cpopen
proc = cpopen.CPopen(["echo", "3"])
proc.communicate()
```