diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-04-19 21:55:14 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-04-19 21:55:14 (GMT) |
commit | 78fe5308b427298a2bb3c80c1d0f6117d18fcf62 (patch) | |
tree | 610f9b592dc3665ca7d16e618fb34acae452aa36 /Objects/unicodeobject.c | |
parent | b8a93215c2b5db2cc88bbc7ce898ae2be64d6e1f (diff) | |
download | cpython-78fe5308b427298a2bb3c80c1d0f6117d18fcf62.zip cpython-78fe5308b427298a2bb3c80c1d0f6117d18fcf62.tar.gz cpython-78fe5308b427298a2bb3c80c1d0f6117d18fcf62.tar.bz2 |
CVS patch 416248: 2.1c1 unicodeobject: unused vrbl cleanup, from Mark Favas.
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index b623c20..f3cab05 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -4793,7 +4793,6 @@ PyObject *PyUnicode_Format(PyObject *format, int flags = 0; int width = -1; int prec = -1; - int size = 0; Py_UNICODE c = '\0'; Py_UNICODE fill; PyObject *v = NULL; @@ -4931,7 +4930,6 @@ PyObject *PyUnicode_Format(PyObject *format, } /* prec */ if (fmtcnt >= 0) { if (c == 'h' || c == 'l' || c == 'L') { - size = c; if (--fmtcnt >= 0) c = *fmt++; } |