diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-06-07 22:32:44 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-06-07 22:32:44 (GMT) |
commit | 7dbe3e31c1a90cceba337f45f647e324e7d41d09 (patch) | |
tree | 16ac013257c60e5fe2c95c234347076298cee75a /Objects | |
parent | 13e934acc0b96a41d101674959b19df2a7a718b4 (diff) | |
download | cpython-7dbe3e31c1a90cceba337f45f647e324e7d41d09.zip cpython-7dbe3e31c1a90cceba337f45f647e324e7d41d09.tar.gz cpython-7dbe3e31c1a90cceba337f45f647e324e7d41d09.tar.bz2 |
remove extra byte and fix comment
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/stringlib/formatter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h index 5b7b3dc..7b29a9d 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: |