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