mirror of https://github.com/python/cpython.git
remove extra byte and fix comment
This commit is contained in:
parent
13e934acc0
commit
7dbe3e31c1
|
@ -649,8 +649,8 @@ 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\0"; /* Group every 3 characters,
|
locale_info->grouping = "\3"; /* Group every 3 characters. The
|
||||||
trailing 0 means repeat
|
(implicit) trailing 0 means repeat
|
||||||
infinitely. */
|
infinitely. */
|
||||||
break;
|
break;
|
||||||
case LT_NO_LOCALE:
|
case LT_NO_LOCALE:
|
||||||
|
|
Loading…
Reference in New Issue