diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-07-27 21:05:21 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-07-27 21:05:21 +0000 |
commit | 49667c257b75903aa59803819cfbca40ffae3483 (patch) | |
tree | 412d566af932b654d997428d4441a86248d6e5a7 /Lib/gzip.py | |
parent | 5cfb05eef04707679077a45ebbe2b096840261a0 (diff) | |
download | cpython-git-49667c257b75903aa59803819cfbca40ffae3483.tar.gz |
Ack, removed useless import of os I just introduced.
Diffstat (limited to 'Lib/gzip.py')
-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 9cab9952a2..5f638c4e6d 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__ |