Commit 207dd387 authored by Victor Stinner's avatar Victor Stinner

fix unused variable

parent eb4b5ac8
...@@ -14002,7 +14002,6 @@ PyUnicode_Format(PyObject *format, PyObject *args) ...@@ -14002,7 +14002,6 @@ PyUnicode_Format(PyObject *format, PyObject *args)
while (--ctx.fmtcnt >= 0) { while (--ctx.fmtcnt >= 0) {
if (PyUnicode_READ(ctx.fmtkind, ctx.fmtdata, ctx.fmtpos) != '%') { if (PyUnicode_READ(ctx.fmtkind, ctx.fmtdata, ctx.fmtpos) != '%') {
Py_ssize_t nonfmtpos; Py_ssize_t nonfmtpos;
Py_UCS4 maxchar;
nonfmtpos = ctx.fmtpos++; nonfmtpos = ctx.fmtpos++;
while (ctx.fmtcnt >= 0 && while (ctx.fmtcnt >= 0 &&
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment