From c112b15fd82715e9f285886a377e6ee3acaeff5d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 14 Feb 1997 20:57:31 +0000 Subject: Oops, remove an unused variable from PyErr_Format(). --- Python/errors.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/errors.c') diff --git a/Python/errors.c b/Python/errors.c index b011acc441..68743bf427 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); -- cgit v1.2.1