summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-10-12 16:38:42 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-10-12 16:38:42 (GMT)
commit51ee66e611ca16e51bea158e09db663fe0cdff22 (patch)
tree8eb1609fc4b850bc704254998c2915e0c725910b /Lib/subprocess.py
parentb6ffc275abf9b4ded164db38358e47822de64aac (diff)
downloadcpython-51ee66e611ca16e51bea158e09db663fe0cdff22.zip
cpython-51ee66e611ca16e51bea158e09db663fe0cdff22.tar.gz
cpython-51ee66e611ca16e51bea158e09db663fe0cdff22.tar.bz2
Typo fix
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r--Lib/subprocess.py2
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