diff options
author | Georg Brandl <georg@python.org> | 2008-01-06 14:33:52 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-06 14:33:52 (GMT) |
commit | c45346f57a6b08f2bd6cd9c7c282ea9f22298ca4 (patch) | |
tree | 20c6a709a4676bef57a80f839abd6dd72d2d43ec /Lib/popen2.py | |
parent | 183a084da3c60109f072cca734eb78fcc1cf56fc (diff) | |
download | cpython-c45346f57a6b08f2bd6cd9c7c282ea9f22298ca4.zip cpython-c45346f57a6b08f2bd6cd9c7c282ea9f22298ca4.tar.gz cpython-c45346f57a6b08f2bd6cd9c7c282ea9f22298ca4.tar.bz2 |
#1591: Clarify docstring of Popen3.
Diffstat (limited to 'Lib/popen2.py')
-rw-r--r-- | Lib/popen2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/popen2.py b/Lib/popen2.py index 145b340..dbd6533 100644 --- a/Lib/popen2.py +++ b/Lib/popen2.py @@ -32,8 +32,8 @@ def _cleanup(): pass class Popen3: - """Class representing a child process. Normally instances are created - by the factory functions popen2() and popen3().""" + """Class representing a child process. Normally, instances are created + internally by the functions popen2() and popen3().""" sts = -1 # Child not completed yet |