]> granicus.if.org Git - python/commitdiff
Ack, removed useless import of os I just introduced.
authorTim Peters <tim.peters@gmail.com>
Tue, 27 Jul 2004 21:05:21 +0000 (21:05 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 27 Jul 2004 21:05:21 +0000 (21:05 +0000)
Lib/gzip.py

index 9cab9952a2372d8934c4d0b86af1ef53b389a551..5f638c4e6d4e5ed54145d5b9015810ccd3412807 100644 (file)
@@ -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__