v0.7
New Features
-
All new APIs are covered in the README file.
-
Allow
Map
objects to be constructed from other mappings:
Map(a=1)
, orMap([('a', 1)])
, orMap(dict(a=1))
. -
Implement
Map.update()
method. -
Implement
Map.mutate()
andMapMutation
API. -
Make
Map
objects pickleable. -
Make
Map.keys()
,Map.values()
, andMap.items()
proper dict-view
like objects.