[Python-checkins] python/dist/src/Lib gzip.py,1.41,1.42
tim_one at users.sourceforge.net
tim_one at users.sourceforge.net
Tue Jul 27 23:05:23 CEST 2004
Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20466/Lib
Modified Files:
gzip.py
Log Message:
Ack, removed useless import of os I just introduced.
Index: gzip.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/gzip.py,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** gzip.py 27 Jul 2004 21:02:01 -0000 1.41
--- gzip.py 27 Jul 2004 21:05:21 -0000 1.42
***************
*** 6,10 ****
# based on Andrew Kuchling's minigzip.py distributed with the zlib module
! import os, struct, sys, time
import zlib
import __builtin__
--- 6,10 ----
# based on Andrew Kuchling's minigzip.py distributed with the zlib module
! import struct, sys, time
import zlib
import __builtin__
More information about the Python-checkins
mailing list