7 lines
195 B
Python
7 lines
195 B
Python
"""Code pulled from future python versions, here for compatibility"""
|
|
|
|
from collections import MutableMapping, KeysView, ValuesView, ItemsView, OrderedDict
|
|
from functools import total_ordering
|
|
|
|
|