summaryrefslogtreecommitdiffstats
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2005-01-12 16:00:55 (GMT)
committerFred Drake <fdrake@acm.org>2005-01-12 16:00:55 (GMT)
commitd7c27bef526e1b9cd3bdc34735c9d1a5b5357374 (patch)
treee5a38c6d951a191bcf93f1c10358595bdc7b63af /Python/marshal.c
parent8231de0513b1dfc4b37f751988b9a05ca6a34916 (diff)
downloadcpython-d7c27bef526e1b9cd3bdc34735c9d1a5b5357374.zip
cpython-d7c27bef526e1b9cd3bdc34735c9d1a5b5357374.tar.gz
cpython-d7c27bef526e1b9cd3bdc34735c9d1a5b5357374.tar.bz2
remove unused variable
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index 2f0a642..d0fcac7 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -261,7 +261,6 @@ w_object(PyObject *v, WFILE *p)
w_object((PyObject *)NULL, p);
}
else if (PyAnySet_Check(v)) {
- int pos;
PyObject *value, *it;
if (PyObject_TypeCheck(v, &PySet_Type))