Oops, remove an unused variable from PyErr_Format().

This commit is contained in:
Guido van Rossum 1997-02-14 20:57:31 +00:00
parent 5c4998b236
commit 2dc466169e
1 changed files with 0 additions and 1 deletions

View 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);