summaryrefslogtreecommitdiffstats
path: root/Python/errors.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-02-14 20:57:31 (GMT)
committerGuido van Rossum <guido@python.org>1997-02-14 20:57:31 (GMT)
commit2dc466169e6a0658744116b556cd5db90bde8bd9 (patch)
tree50e143bfb9a8ddc04b8ed138cee532487de5a194 /Python/errors.c
parent5c4998b23660c367442ed51be03b7eb273700f85 (diff)
downloadcpython-2dc466169e6a0658744116b556cd5db90bde8bd9.zip
cpython-2dc466169e6a0658744116b556cd5db90bde8bd9.tar.gz
cpython-2dc466169e6a0658744116b556cd5db90bde8bd9.tar.bz2
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 b011acc..68743bf 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);