diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h index 5d06df42f55..fd7b123d42c 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;