Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | # |
2 | # SPDX-License-Identifier: GPL-2.0-only | ||||
3 | # | ||||
4 | |||||
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 5 | """Code pulled from future python versions, here for compatibility""" |
6 | |||||
7 | from collections import MutableMapping, KeysView, ValuesView, ItemsView, OrderedDict | ||||
8 | from functools import total_ordering | ||||
9 | |||||
10 |