diff options
author | Serban Udrea <S.Udrea@gsi.de> | 2018-10-30 22:08:29 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-11-03 07:44:57 +0700 |
commit | 725266d352efc19cde7e2dfa246ac99c7a94c4bd (patch) | |
tree | 041da1fc162e6871c129b084c06de70fce7c3bb2 /python/subprocess32/README | |
parent | 57ae9b895b2f6ccb5f21a249f9828587368027fc (diff) |
python/subprocess32: Added (subprocess module).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/subprocess32/README')
-rw-r--r-- | python/subprocess32/README | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/subprocess32/README b/python/subprocess32/README new file mode 100644 index 0000000000000..802a975a3345b --- /dev/null +++ b/python/subprocess32/README @@ -0,0 +1,6 @@ +This is a backport of the subprocess standard library module from Python 3.2-3.5 +for use on Python 2. + +It includes bugfixes and some new features. On POSIX systems it is guaranteed to +be reliable when used in threaded applications. It includes timeout support from +Python 3.3 and the run() API from 3.5 but otherwise matches 3.2’s API. |