[Python-checkins] r70323 - peps/trunk/pep-0378.txt

david.goodger python-checkins at python.org
Thu Mar 12 14:03:14 CET 2009


Author: david.goodger
Date: Thu Mar 12 14:03:14 2009
New Revision: 70323

Log:
backslashes not necessary inside parentheses

Modified:
   peps/trunk/pep-0378.txt

Modified: peps/trunk/pep-0378.txt
==============================================================================
--- peps/trunk/pep-0378.txt	(original)
+++ peps/trunk/pep-0378.txt	Thu Mar 12 14:03:14 2009
@@ -116,8 +116,8 @@
 
 * Lie Ryan suggested a convenience function of the form::
 
-    create_format(self, type='i', base=16, seppos=4, sep=':', \
-                  charset='0123456789abcdef', maxwidth=32,    \
+    create_format(self, type='i', base=16, seppos=4, sep=':',
+                  charset='0123456789abcdef', maxwidth=32,
                   minwidth=32, pad='0')
 
 * Eric Smith would like the C version of the mini-language


More information about the Python-checkins mailing list