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;
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to