From: Victor Stinner Date: Wed, 3 Apr 2013 01:14:58 +0000 (+0200) Subject: fix unused variable X-Git-Tag: v3.4.0a1~1043 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=207dd387269a95c0406ca211f35bab24948affaa;p=thirdparty%2FPython%2Fcpython.git fix unused variable --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index dee2953017a0..eb126551115c 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -14002,7 +14002,6 @@ PyUnicode_Format(PyObject *format, PyObject *args) while (--ctx.fmtcnt >= 0) { if (PyUnicode_READ(ctx.fmtkind, ctx.fmtdata, ctx.fmtpos) != '%') { Py_ssize_t nonfmtpos; - Py_UCS4 maxchar; nonfmtpos = ctx.fmtpos++; while (ctx.fmtcnt >= 0 &&