rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | """Code pulled from future python versions, here for compatibility""" |
2 | |||||
3 | from collections import MutableMapping, KeysView, ValuesView, ItemsView, OrderedDict | ||||
4 | from functools import total_ordering | ||||
5 | |||||
6 |