From 8a4422e78d88579bd3a054999ba2ce8ac6565f57 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 5 Apr 2014 00:15:52 +0200 Subject: [PATCH] Issue #21118: Remove unused variable --- Objects/unicodeobject.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 067a945b055..91f6620824d 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -8595,7 +8595,6 @@ _PyUnicode_TranslateCharmap(PyObject *input, /* startpos for collecting untranslatable chars */ Py_ssize_t collstart; Py_ssize_t collend; - Py_ssize_t coll; Py_UCS4 ch; ch = PyUnicode_READ(kind, data, i);