Files
2024-08-27 20:33:44 +02:00

7 lines
151 B
Python

try:
# python 3
from collections.abc import MutableMapping
except ImportError:
# python 2
from collections import MutableMapping