diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-21 15:26:28 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-21 15:26:28 (GMT) |
commit | a759d4e9f40fd0b757600d5fd3666cdddee113fe (patch) | |
tree | 19f2342a648d3247949b20b61737425b44ba06d7 /Objects | |
parent | c2b4673ffe264f2b1e8ea3375a0860f2326b47d9 (diff) | |
download | cpython-a759d4e9f40fd0b757600d5fd3666cdddee113fe.zip cpython-a759d4e9f40fd0b757600d5fd3666cdddee113fe.tar.gz cpython-a759d4e9f40fd0b757600d5fd3666cdddee113fe.tar.bz2 |
Make private function static (from `make smelly`)
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/stringlib/localeutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringlib/localeutil.h b/Objects/stringlib/localeutil.h index 28c87c8..6e2f073 100644 --- a/Objects/stringlib/localeutil.h +++ b/Objects/stringlib/localeutil.h @@ -99,7 +99,7 @@ STRINGLIB(fill)(STRINGLIB_CHAR **digits_end, STRINGLIB_CHAR **buffer_end, * As closely as possible, this code mimics the logic in decimal.py's _insert_thousands_sep(). **/ -Py_ssize_t +static Py_ssize_t STRINGLIB(InsertThousandsGrouping)( STRINGLIB_CHAR *buffer, Py_ssize_t n_buffer, |