Kaydet (Commit) 1a97d5f0 authored tarafından Tim Peters's avatar Tim Peters

SF patch #416247 2.1c1 stringobject: unused vrbl cleanup.

Thanks to Mark Favas.
üst bda3a59a
......@@ -2786,7 +2786,6 @@ PyString_Format(PyObject *format, PyObject *args)
int flags = 0;
int width = -1;
int prec = -1;
int size = 0;
int c = '\0';
int fill;
PyObject *v = NULL;
......@@ -2924,7 +2923,6 @@ PyString_Format(PyObject *format, PyObject *args)
} /* prec */
if (fmtcnt >= 0) {
if (c == 'h' || c == 'l' || c == 'L') {
size = c;
if (--fmtcnt >= 0)
c = *fmt++;
}
......
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