aboutsummaryrefslogtreecommitdiff
path: root/immutables/__init__.py
blob: fe1da925c3d97e7e5bf3f188cff3e661bd4e290b (plain)
1
2
3
4
5
6
7
8
9
10
11
try:
    from ._map import Map
except ImportError:
    from .map import Map
else:
    import collections.abc as _abc
    _abc.Mapping.register(Map)


__all__ = 'Map',
__version__ = '0.8'