25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # flake8: noqa
-
- import sys
-
- from typing import TYPE_CHECKING
-
- if TYPE_CHECKING:
- from ._map import Map
- else:
- try:
- from ._map import Map
- except ImportError:
- from .map import Map
- else:
- import collections.abc as _abc
- _abc.Mapping.register(Map)
-
- from ._protocols import MapKeys as MapKeys
- from ._protocols import MapValues as MapValues
- from ._protocols import MapItems as MapItems
- from ._protocols import MapMutation as MapMutation
-
- from ._version import __version__
-
- __all__ = 'Map',
|