diff options
author | Skip Montanaro <skip@pobox.com> | 2001-02-06 01:07:02 +0000 |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-02-06 01:07:02 +0000 |
commit | 269b83bc05452f4f54fa9df5a76608f88da544fe (patch) | |
tree | 3463eb160b6a7a04a8a1a9aebc79075d9390f91e /Lib/multifile.py | |
parent | 46fa39ab1d1e2f14c1b44c5e81c34c5f6cfb9a58 (diff) | |
download | cpython-git-269b83bc05452f4f54fa9df5a76608f88da544fe.tar.gz |
added several more __all__ lists
Diffstat (limited to 'Lib/multifile.py')
-rw-r--r-- | Lib/multifile.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/multifile.py b/Lib/multifile.py index 38a5a46069..e0305d82b2 100644 --- a/Lib/multifile.py +++ b/Lib/multifile.py @@ -30,6 +30,8 @@ seekable stream object. import sys import string +__all__ = ["MultiFile","Error"] + class Error(Exception): pass |