This file is indexed.

/usr/share/doc/python-cpopen/README is in python-cpopen 1.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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()
```

# Running the tests

```{.bash}
nosetests tests/tests.py
```