From: Benjamin Peterson Date: Mon, 7 Jun 2010 22:32:44 +0000 (+0000) Subject: remove extra byte and fix comment X-Git-Tag: v2.7rc2~52 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7dbe3e31c1a90cceba337f45f647e324e7d41d09;p=python remove extra byte and fix comment --- diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h index 5b7b3dcf08..7b29a9de3a 100644 --- a/Objects/stringlib/formatter.h +++ b/Objects/stringlib/formatter.h @@ -649,8 +649,8 @@ get_locale_info(int type, LocaleInfo *locale_info) case LT_DEFAULT_LOCALE: locale_info->decimal_point = "."; locale_info->thousands_sep = ","; - locale_info->grouping = "\3\0"; /* Group every 3 characters, - trailing 0 means repeat + locale_info->grouping = "\3"; /* Group every 3 characters. The + (implicit) trailing 0 means repeat infinitely. */ break; case LT_NO_LOCALE: