how to close a gzip.GzipFile?

J

Justin Guerin

Hello list,

gzip documentation states that calling the .close() method on a GzipFile
doesn't really close it. If I'm really through with it, what's the best
way to close it? I'm using Python2.2 (but the gzip module doesn't seem to
be any different from 2.4).

Here's my code snippet, if it's relevant:

oldfileobj= file(oldfile, 'r')
oldmd5 = md5.new()
tellold = 0
tellnew = 1
while tellold != tellnew:
line = oldfileobj.readline()
tellold = tellnew
tellnew = oldfileobj.tell()
oldmd5.update(line)


At this point, I'm finished reading the file, and would like to properly
close it. Should I just del oldfileobj?

Also, while I'm asking, does anyone know a better way to iterate through a
gzipped file? The gzip module doesn't support iteration, nor xreadlines.
I need to avoid reading the entire file contents into memory, so I can't
use "for line in oldfileobj.readlines()"

Thanks for the pointers.

Justin Guerin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,682
Members
48,796
Latest member
Greg L.

Latest Threads

Top