remove all usage of Py_LOCAL
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 @@
     return PyLong_FromLong((unsigned char)a->ob_sval[i]);
 }
 
-Py_LOCAL(int)
+static int
 bytes_compare_eq(PyBytesObject *a, PyBytesObject *b)
 {
     int cmp;