Separate box and print_box.
[python_utils.git] / collect / bidict.py
index 1fa66dc81fe6bd64e16b80a8fa49bea7502c46db..d28817453775e6f4dc35804a445dc2f6a9915bc4 100644 (file)
@@ -1,6 +1,7 @@
 #!/usr/bin/env python3
 
-class bidict(dict):
+
+class BiDict(dict):
     def __init__(self, *args, **kwargs):
         """
         A class that stores both a Mapping between keys and values and
@@ -9,7 +10,7 @@ class bidict(dict):
         is possible to have several keys with the same value, using
         the inverse map returns a sequence of keys.
 
-        >>> d = bidict()
+        >>> d = BiDict()
         >>> d['a'] = 1
         >>> d['b'] = 2
         >>> d['c'] = 2
@@ -50,4 +51,5 @@ class bidict(dict):
 
 if __name__ == '__main__':
     import doctest
+
     doctest.testmod()