From: Tim Peters Date: Tue, 27 Jul 2004 21:05:21 +0000 (+0000) Subject: Ack, removed useless import of os I just introduced. X-Git-Tag: v2.4a2~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=49667c257b75903aa59803819cfbca40ffae3483;p=thirdparty%2FPython%2Fcpython.git Ack, removed useless import of os I just introduced. --- diff --git a/Lib/gzip.py b/Lib/gzip.py index 9cab9952a237..5f638c4e6d4e 100644 --- a/Lib/gzip.py +++ b/Lib/gzip.py @@ -5,7 +5,7 @@ but random access is not allowed.""" # based on Andrew Kuchling's minigzip.py distributed with the zlib module -import os, struct, sys, time +import struct, sys, time import zlib import __builtin__