mirror of
https://github.com/python/cpython.git
synced 2025-12-04 16:43:27 +00:00
Corrected missed #if in r57652.
This commit is contained in:
parent
b7f5ba16db
commit
44300950dc
1 changed files with 2 additions and 0 deletions
|
|
@ -76,7 +76,9 @@ is_sign_element(STRINGLIB_CHAR c)
|
||||||
{
|
{
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case ' ': case '+': case '-':
|
case ' ': case '+': case '-':
|
||||||
|
#if ALLOW_PARENS_FOR_SIGN
|
||||||
case '(':
|
case '(':
|
||||||
|
#endif
|
||||||
return 1;
|
return 1;
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue