From: Eric Smith Date: Wed, 29 Aug 2007 12:43:12 +0000 (+0000) Subject: Corrected missed #if in r57652. X-Git-Tag: v3.0a1~148 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44300950dc2ed13ec07d7077f8fbe8ba8cf22076;p=python Corrected missed #if in r57652. --- diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h index 5d06df42f5..fd7b123d42 100644 --- a/Objects/stringlib/formatter.h +++ b/Objects/stringlib/formatter.h @@ -76,7 +76,9 @@ is_sign_element(STRINGLIB_CHAR c) { switch (c) { case ' ': case '+': case '-': +#if ALLOW_PARENS_FOR_SIGN case '(': +#endif return 1; default: return 0;