[Python-3000-checkins] r57653 - python/branches/py3k/Objects/stringlib/formatter.h

eric.smith python-3000-checkins at python.org
Wed Aug 29 14:43:13 CEST 2007


Author: eric.smith
Date: Wed Aug 29 14:43:12 2007
New Revision: 57653

Modified:
   python/branches/py3k/Objects/stringlib/formatter.h
Log:
Corrected missed #if in r57652.

Modified: python/branches/py3k/Objects/stringlib/formatter.h
==============================================================================
--- python/branches/py3k/Objects/stringlib/formatter.h	(original)
+++ python/branches/py3k/Objects/stringlib/formatter.h	Wed Aug 29 14:43:12 2007
@@ -76,7 +76,9 @@
 {
     switch (c) {
     case ' ': case '+': case '-':
+#if ALLOW_PARENS_FOR_SIGN
     case '(':
+#endif
         return 1;
     default:
         return 0;


More information about the Python-3000-checkins mailing list