From: Guido van Rossum Date: Fri, 14 Feb 1997 20:57:31 +0000 (+0000) Subject: Oops, remove an unused variable from PyErr_Format(). X-Git-Tag: v1.5a1~364 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2dc466169e6a0658744116b556cd5db90bde8bd9;p=thirdparty%2FPython%2Fcpython.git Oops, remove an unused variable from PyErr_Format(). --- diff --git a/Python/errors.c b/Python/errors.c index b011acc44166..68743bf427ca 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -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);