remove unused variable
diff --git a/Python/compile.c b/Python/compile.c
index 9c8879f..ff55220 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -397,7 +397,7 @@
 static PyObject *
 dictbytype(PyObject *src, int scope_type, int flag, int offset)
 {
-    Py_ssize_t pos = 0, i = offset, scope, num_keys, key_i;
+    Py_ssize_t i = offset, scope, num_keys, key_i;
     PyObject *k, *v, *dest = PyDict_New();
     PyObject *sorted_keys;