summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/compat.py
diff options
context:
space:
mode:
authorChris Laplante <chris.laplante@agilent.com>2020-08-25 12:51:41 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-08-26 09:05:38 +0100
commit77441a08d4ba27996a651651e65f63af76e2503e (patch)
tree994b1fa370372cf0d2c45fa066b3ae5fb90e6366 /bitbake/lib/bb/compat.py
parent392b2cf529660da75013352a4249492ac55b36e6 (diff)
downloadpoky-77441a08d4ba27996a651651e65f63af76e2503e.tar.gz
bitbake: compat.py: remove file since it no longer actually implements anything
Now that compat.py just imports Python standard library stuff, get rid of the layer of indirection. (Bitbake rev: e2be6defbb9fcf25f9df04c3b452d0dba48dfd03) Signed-off-by: Chris Laplante <chris.laplante@agilent.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/compat.py')
-rw-r--r--bitbake/lib/bb/compat.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/bitbake/lib/bb/compat.py b/bitbake/lib/bb/compat.py
deleted file mode 100644
index 49356681ab..0000000000
--- a/bitbake/lib/bb/compat.py
+++ /dev/null
@@ -1,10 +0,0 @@
1#
2# SPDX-License-Identifier: GPL-2.0-only
3#
4
5"""Code pulled from future python versions, here for compatibility"""
6
7from collections import MutableMapping, KeysView, ValuesView, ItemsView, OrderedDict
8from functools import total_ordering
9
10