mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

Now we've moved to require python 2.7.3, we can jettison the compatibility workarounds/hacks for older python versions. (Bitbake rev: a51c402304f2080a76720f9b31d6dfdbed393bba) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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
|
|
|
|
|