summaryrefslogtreecommitdiff
path: root/Python/errors.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-02-14 20:57:31 +0000
committerGuido van Rossum <guido@python.org>1997-02-14 20:57:31 +0000
commitc112b15fd82715e9f285886a377e6ee3acaeff5d (patch)
tree3947a296e3841ae96a9d3692b4498adfa37238d7 /Python/errors.c
parent1906ea5f06a2d81dd16ffe2f27d59839ac628a20 (diff)
downloadcpython-c112b15fd82715e9f285886a377e6ee3acaeff5d.tar.gz
Oops, remove an unused variable from PyErr_Format().
Diffstat (limited to 'Python/errors.c')
-rw-r--r--Python/errors.c1
1 files changed, 0 insertions, 1 deletions
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);