summaryrefslogtreecommitdiffstats
path: root/external/poky/bitbake/lib/bb/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'external/poky/bitbake/lib/bb/compat.py')
-rw-r--r--external/poky/bitbake/lib/bb/compat.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/external/poky/bitbake/lib/bb/compat.py b/external/poky/bitbake/lib/bb/compat.py
new file mode 100644
index 00000000..de1923d2
--- /dev/null
+++ b/external/poky/bitbake/lib/bb/compat.py
@@ -0,0 +1,6 @@
+"""Code pulled from future python versions, here for compatibility"""
+
+from collections import MutableMapping, KeysView, ValuesView, ItemsView, OrderedDict
+from functools import total_ordering
+
+