Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [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 |