summaryrefslogtreecommitdiff
path: root/Objects/bytesobject.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-09 13:54:34 -0700
committerBenjamin Peterson <benjamin@python.org>2016-09-09 13:54:34 -0700
commite40c94436517d37d12793f375ee50f42d5459e70 (patch)
treeba7175a78217415ef8538987f3706562764aa424 /Objects/bytesobject.c
parent020f777c418f8cec467dd0c5413d9778c5c21003 (diff)
downloadcpython-e40c94436517d37d12793f375ee50f42d5459e70.tar.gz
remove all usage of Py_LOCAL
Diffstat (limited to 'Objects/bytesobject.c')
-rw-r--r--Objects/bytesobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c
index 6e7c4fa188..4d14451254 100644
--- a/Objects/bytesobject.c
+++ b/Objects/bytesobject.c
@@ -1500,7 +1500,7 @@ bytes_item(PyBytesObject *a, Py_ssize_t i)
return PyLong_FromLong((unsigned char)a->ob_sval[i]);
}
-Py_LOCAL(int)
+static int
bytes_compare_eq(PyBytesObject *a, PyBytesObject *b)
{
int cmp;