diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-10-12 16:38:42 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-10-12 16:38:42 (GMT) |
commit | 51ee66e611ca16e51bea158e09db663fe0cdff22 (patch) | |
tree | 8eb1609fc4b850bc704254998c2915e0c725910b /Lib/subprocess.py | |
parent | b6ffc275abf9b4ded164db38358e47822de64aac (diff) | |
download | cpython-51ee66e611ca16e51bea158e09db663fe0cdff22.zip cpython-51ee66e611ca16e51bea158e09db663fe0cdff22.tar.gz cpython-51ee66e611ca16e51bea158e09db663fe0cdff22.tar.bz2 |
Typo fix
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r-- | Lib/subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 355529e..20ced68 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -711,7 +711,7 @@ class Popen(object): self.pid = pid ht.Close() - # Child is launched. Close the parents copy of those pipe + # Child is launched. Close the parent's copy of those pipe # handles that only the child should have open. You need # to make sure that no handles to the write end of the # output pipe are maintained in this process or else the |