diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-18 23:26:27 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-18 23:26:27 (GMT) |
commit | 093ab1aa03f9b049496c3fd8d3006b053aa4f9a4 (patch) | |
tree | 6f0847f74aa38d806ca92c60647c6a1d9ae646fa /Modules | |
parent | 1f63670a2a0e66c049c2cfe8a2ec62a663e5c754 (diff) | |
download | cpython-093ab1aa03f9b049496c3fd8d3006b053aa4f9a4.zip cpython-093ab1aa03f9b049496c3fd8d3006b053aa4f9a4.tar.gz cpython-093ab1aa03f9b049496c3fd8d3006b053aa4f9a4.tar.bz2 |
Remove unused variable
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/bz2module.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/bz2module.c b/Modules/bz2module.c index 6dd1dbb..c8fab7a 100644 --- a/Modules/bz2module.c +++ b/Modules/bz2module.c @@ -985,7 +985,6 @@ BZ2File_seek(BZ2FileObject *self, PyObject *args) size_t readsize; int chunksize; int bzerror; - int rewind = 0; PyObject *ret = NULL; if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &where)) |