mirror of
https://github.com/python/cpython.git
synced 2025-10-06 23:21:06 +00:00
Issue #25923: Added the const qualifier to static constant arrays.
This commit is contained in:
parent
ea8c43152f
commit
2d06e84455
44 changed files with 139 additions and 134 deletions
|
@ -656,7 +656,7 @@ fill_number(_PyUnicodeWriter *writer, const NumberFieldWidths *spec,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static char no_grouping[1] = {CHAR_MAX};
|
||||
static const char no_grouping[1] = {CHAR_MAX};
|
||||
|
||||
/* Find the decimal point character(s?), thousands_separator(s?), and
|
||||
grouping description, either for the current locale if type is
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue