diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-09 20:54:34 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-09 20:54:34 (GMT) |
commit | 621b430a14f7225f2bf7037408743989b63b7848 (patch) | |
tree | 5b42997fb33ed52b6bd77a2953aef15704c7ca3c /Objects/unicodeobject.c | |
parent | 50fd89806f685ab4be84721a1d8f37184f625739 (diff) | |
download | cpython-621b430a14f7225f2bf7037408743989b63b7848.zip cpython-621b430a14f7225f2bf7037408743989b63b7848.tar.gz cpython-621b430a14f7225f2bf7037408743989b63b7848.tar.bz2 |
remove all usage of Py_LOCAL
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index e0c3bfe..aaebfd0 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -10936,7 +10936,7 @@ unicode_compare(PyObject *str1, PyObject *str2) #undef COMPARE } -Py_LOCAL(int) +static int unicode_compare_eq(PyObject *str1, PyObject *str2) { int kind; |