diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-07-27 21:05:21 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-07-27 21:05:21 (GMT) |
commit | 49667c257b75903aa59803819cfbca40ffae3483 (patch) | |
tree | 412d566af932b654d997428d4441a86248d6e5a7 | |
parent | 5cfb05eef04707679077a45ebbe2b096840261a0 (diff) | |
download | cpython-49667c257b75903aa59803819cfbca40ffae3483.zip cpython-49667c257b75903aa59803819cfbca40ffae3483.tar.gz cpython-49667c257b75903aa59803819cfbca40ffae3483.tar.bz2 |
Ack, removed useless import of os I just introduced.
-rw-r--r-- | Lib/gzip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/gzip.py b/Lib/gzip.py index 9cab995..5f638c4 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__ |