[Python-checkins] r63786 - peps/trunk/pep-3101.txt

eric.smith python-checkins at python.org
Thu May 29 15:26:39 CEST 2008


Author: eric.smith
Date: Thu May 29 15:26:39 2008
New Revision: 63786

Log:
Fixed 'print' statement to be 3.0 compliant.  Thanks Wesley Chun.

Modified:
   peps/trunk/pep-3101.txt

Modified: peps/trunk/pep-3101.txt
==============================================================================
--- peps/trunk/pep-3101.txt	(original)
+++ peps/trunk/pep-3101.txt	Thu May 29 15:26:39 2008
@@ -108,7 +108,7 @@
     There is also a global built-in function, 'format' which formats
     a single value:
     
-       print format(10.0, "7.3g")
+       print(format(10.0, "7.3g"))
        
     This function is described in a later section.
 


More information about the Python-checkins mailing list