From: Antoine Pitrou Date: Thu, 21 Jun 2012 15:26:28 +0000 (+0200) Subject: Make private function static (from `make smelly`) X-Git-Tag: v3.3.0b1~170 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a759d4e9f40fd0b757600d5fd3666cdddee113fe;p=thirdparty%2FPython%2Fcpython.git Make private function static (from `make smelly`) --- diff --git a/Objects/stringlib/localeutil.h b/Objects/stringlib/localeutil.h index 28c87c8f832c..6e2f07342c9f 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,