From: Victor Stinner Date: Fri, 4 Apr 2014 22:15:52 +0000 (+0200) Subject: Issue #21118: Remove unused variable X-Git-Tag: v3.5.0a1~1941 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8a4422e78d88579bd3a054999ba2ce8ac6565f57;p=thirdparty%2FPython%2Fcpython.git Issue #21118: Remove unused variable --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 067a945b0552..91f6620824da 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);