Corrected missed #if in r57652.
diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h
index 5d06df4..fd7b123 100644
--- a/Objects/stringlib/formatter.h
+++ b/Objects/stringlib/formatter.h
@@ -76,7 +76,9 @@
 {
     switch (c) {
     case ' ': case '+': case '-':
+#if ALLOW_PARENS_FOR_SIGN
     case '(':
+#endif
         return 1;
     default:
         return 0;