[Python-checkins] r61845 - peps/trunk/pep-3127.txt

eric.smith python-checkins at python.org
Mon Mar 24 12:02:45 CET 2008


Author: eric.smith
Date: Mon Mar 24 12:02:44 2008
New Revision: 61845

Modified:
   peps/trunk/pep-3127.txt
Log:
Clarified that octal % formatting in 2.6 does not change.

Modified: peps/trunk/pep-3127.txt
==============================================================================
--- peps/trunk/pep-3127.txt	(original)
+++ peps/trunk/pep-3127.txt	Mon Mar 24 12:02:44 2008
@@ -129,9 +129,10 @@
 -----------------
 
 The string (and unicode in 2.6) % operator will have
-'b' format specifier added for binary, and the alternate
-syntax of the 'o' option will need to be updated to
-add '0o' in front, instead of '0'.
+'b' format specifier added for binary in both 2.6 and 3.0.
+In 3.0, the alternate syntax of the 'o' option will need to
+be updated to add '0o' in front, instead of '0'.  In 2.6,
+alternate octal formatting will continue to add only '0'.
 
 PEP 3101 already supports 'b' for binary output.
 


More information about the Python-checkins mailing list