From 2dc466169e6a0658744116b556cd5db90bde8bd9 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 14 Feb 1997 20:57:31 +0000 Subject: [PATCH] Oops, remove an unused variable from PyErr_Format(). --- Python/errors.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Python/errors.c b/Python/errors.c index b011acc4416..68743bf427c 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);