diff options
Diffstat (limited to 'Lib/UserList.py')
-rw-r--r-- | Lib/UserList.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/UserList.py b/Lib/UserList.py index ee26589..6867332 100644 --- a/Lib/UserList.py +++ b/Lib/UserList.py @@ -1,5 +1,7 @@ """A more or less complete user-defined wrapper around list objects.""" +__all__ = ["UserList"] + class UserList: def __init__(self, initlist=None): self.data = [] |