[Python-checkins] r59771 - python/trunk/Lib/popen2.py

georg.brandl python-checkins at python.org
Sun Jan 6 15:33:52 CET 2008


Author: georg.brandl
Date: Sun Jan  6 15:33:52 2008
New Revision: 59771

Modified:
   python/trunk/Lib/popen2.py
Log:
#1591: Clarify docstring of Popen3.


Modified: python/trunk/Lib/popen2.py
==============================================================================
--- python/trunk/Lib/popen2.py	(original)
+++ python/trunk/Lib/popen2.py	Sun Jan  6 15:33:52 2008
@@ -32,8 +32,8 @@
                 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
 


More information about the Python-checkins mailing list