diff options
Diffstat (limited to 'Lib/binhex.py')
-rw-r--r-- | Lib/binhex.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/binhex.py b/Lib/binhex.py index ac2437b..8189563 100644 --- a/Lib/binhex.py +++ b/Lib/binhex.py @@ -27,6 +27,8 @@ import struct import string import binascii +__all__ = ["binhex","hexbin","Error"] + class Error(Exception): pass |