summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-06-21 15:26:28 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-06-21 15:26:28 (GMT)
commita759d4e9f40fd0b757600d5fd3666cdddee113fe (patch)
tree19f2342a648d3247949b20b61737425b44ba06d7 /Objects
parentc2b4673ffe264f2b1e8ea3375a0860f2326b47d9 (diff)
downloadcpython-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.h2
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,