Example #1
0
 def __setitem__(self, key, value):
     if not is_string(key):
         key = unic(key)
     if not is_string(value):
         value = unic(value)
     NormalizedDict.__setitem__(self, key, value)