[Python-checkins] r60441 - python/trunk/Python/marshal.c

christian.heimes python-checkins at python.org
Wed Jan 30 12:46:01 CET 2008


Author: christian.heimes
Date: Wed Jan 30 12:46:00 2008
New Revision: 60441

Modified:
   python/trunk/Python/marshal.c
Log:
Removed unused var

Modified: python/trunk/Python/marshal.c
==============================================================================
--- python/trunk/Python/marshal.c	(original)
+++ python/trunk/Python/marshal.c	Wed Jan 30 12:46:00 2008
@@ -508,7 +508,7 @@
 {
 	/* NULL is a valid return value, it does not necessarily means that
 	   an exception is set. */
-	PyObject *v, *v2, *v3;
+	PyObject *v, *v2;
 	long i, n;
 	int type = r_byte(p);
 	PyObject *retval;


More information about the Python-checkins mailing list