summaryrefslogtreecommitdiffstats
path: root/Objects/bytesobject.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-09 20:54:34 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-09 20:54:34 (GMT)
commit621b430a14f7225f2bf7037408743989b63b7848 (patch)
tree5b42997fb33ed52b6bd77a2953aef15704c7ca3c /Objects/bytesobject.c
parent50fd89806f685ab4be84721a1d8f37184f625739 (diff)
downloadcpython-621b430a14f7225f2bf7037408743989b63b7848.zip
cpython-621b430a14f7225f2bf7037408743989b63b7848.tar.gz
cpython-621b430a14f7225f2bf7037408743989b63b7848.tar.bz2
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 6e7c4fa..4d14451 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;