From 2dd4276559658e06eaf8b623c2c47373f1f50688 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Tue, 23 Jan 2001 15:35:05 +0000 Subject: added a few more __all__ lists fixed typo in ihooks docstring --- Lib/gzip.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Lib/gzip.py') diff --git a/Lib/gzip.py b/Lib/gzip.py index 2ed3d9c71e..53e6e9c3c7 100644 --- a/Lib/gzip.py +++ b/Lib/gzip.py @@ -9,6 +9,8 @@ import string, struct, sys, time import zlib import __builtin__ +__all__ = ["GzipFile","open"] + FTEXT, FHCRC, FEXTRA, FNAME, FCOMMENT = 1, 2, 4, 8, 16 READ, WRITE = 1, 2 -- cgit v1.2.1