From c62c81e013fbc9a726493870c3624b60ae63a757 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Mon, 12 Feb 2001 02:00:42 +0000 Subject: __all__ for several more modules --- Lib/quopri.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Lib/quopri.py') diff --git a/Lib/quopri.py b/Lib/quopri.py index 5bb11f653d..5f5e80c6db 100755 --- a/Lib/quopri.py +++ b/Lib/quopri.py @@ -4,6 +4,8 @@ # (Dec 1991 version). +__all__ = ["encode","decode"] + ESCAPE = '=' MAXLINESIZE = 76 HEX = '0123456789ABCDEF' -- cgit v1.2.1