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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7dbe3e31c1a90cceba337f45f647e324e7d41d09;p=thirdparty%2FPython%2Fcpython.git remove extra byte and fix comment --- diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h index 5b7b3dcf081f..7b29a9de3a92 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: