7 lines
151 B
Python
7 lines
151 B
Python
try:
|
|
# python 3
|
|
from collections.abc import MutableMapping
|
|
except ImportError:
|
|
# python 2
|
|
from collections import MutableMapping
|