mirror of https://github.com/python/cpython.git
locale grouping strings should end in '\0'
This commit is contained in:
parent
3ca14e93c9
commit
c4afe2950a
|
@ -649,7 +649,7 @@ get_locale_info(int type, LocaleInfo *locale_info)
|
||||||
case LT_DEFAULT_LOCALE:
|
case LT_DEFAULT_LOCALE:
|
||||||
locale_info->decimal_point = ".";
|
locale_info->decimal_point = ".";
|
||||||
locale_info->thousands_sep = ",";
|
locale_info->thousands_sep = ",";
|
||||||
locale_info->grouping = "\3"; /* Group every 3 characters,
|
locale_info->grouping = "\3\0"; /* Group every 3 characters,
|
||||||
trailing 0 means repeat
|
trailing 0 means repeat
|
||||||
infinitely. */
|
infinitely. */
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue