]> granicus.if.org Git - python/commitdiff
Oops, remove an unused variable from PyErr_Format().
authorGuido van Rossum <guido@python.org>
Fri, 14 Feb 1997 20:57:31 +0000 (20:57 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 14 Feb 1997 20:57:31 +0000 (20:57 +0000)
Python/errors.c

index b011acc44166a8e7c2dad716883df5d838929d2d..68743bf427ca6e3806a288bb828fe1beab5d2da8 100644 (file)
@@ -218,7 +218,6 @@ PyErr_Format(exception, format, va_alist)
 {
        va_list vargs;
        char buffer[500]; /* Caller is responsible for limiting the format */
-       PyObject *s;
 
 #ifdef HAVE_STDARG_PROTOTYPES
        va_start(vargs, format);