diff options
author | doko@ubuntu.com <doko@ubuntu.com> | 2012-06-21 10:12:20 (GMT) |
---|---|---|
committer | doko@ubuntu.com <doko@ubuntu.com> | 2012-06-21 10:12:20 (GMT) |
commit | 39378f7f4f00b3e8e91b3c0829f64926f8839afb (patch) | |
tree | 3c8c329cf40fb5895a812099e00a1a5ff93499c8 /Python | |
parent | 69192238ba5375c47ffa4b43726b117bcb31db9f (diff) | |
download | cpython-39378f7f4f00b3e8e91b3c0829f64926f8839afb.zip cpython-39378f7f4f00b3e8e91b3c0829f64926f8839afb.tar.gz cpython-39378f7f4f00b3e8e91b3c0829f64926f8839afb.tar.bz2 |
format_obj: make it static
Diffstat (limited to 'Python')
-rw-r--r-- | Python/formatter_unicode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index cd66670..4b0fd91 100644 --- a/Python/formatter_unicode.c +++ b/Python/formatter_unicode.c @@ -1347,7 +1347,7 @@ done: /************************************************************************/ /*********** built in formatters ****************************************/ /************************************************************************/ -int +static int format_obj(PyObject *obj, _PyUnicodeWriter *writer) { PyObject *str; |