]> granicus.if.org Git - python/commitdiff
Remove unused variable
authorJeremy Hylton <jeremy@alum.mit.edu>
Tue, 8 May 2001 04:00:45 +0000 (04:00 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Tue, 8 May 2001 04:00:45 +0000 (04:00 +0000)
Objects/unicodeobject.c

index 5da4d2f032efd33fa3d850cff0207780aa5b0a3b..475215c25f209c9b337c1650ea00596064397bea 100644 (file)
@@ -2721,7 +2721,6 @@ PyObject *PyUnicode_Join(PyObject *separator,
     PyUnicodeObject *res = NULL;
     int reslen = 0;
     Py_UNICODE *p;
-    int seqlen = 0;
     int sz = 100;
     int i;
     PyObject *it;