[Python-checkins] r42474 - python/trunk/Modules/bz2module.c

neal.norwitz python-checkins at python.org
Sun Feb 19 00:26:28 CET 2006


Author: neal.norwitz
Date: Sun Feb 19 00:26:27 2006
New Revision: 42474

Modified:
   python/trunk/Modules/bz2module.c
Log:
Remove unused variable

Modified: python/trunk/Modules/bz2module.c
==============================================================================
--- python/trunk/Modules/bz2module.c	(original)
+++ python/trunk/Modules/bz2module.c	Sun Feb 19 00:26:27 2006
@@ -985,7 +985,6 @@
 	size_t readsize;
 	int chunksize;
 	int bzerror;
-	int rewind = 0;
 	PyObject *ret = NULL;
 
 	if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &where))


More information about the Python-checkins mailing list