diff options
author | Chris Laplante <chris.laplante@agilent.com> | 2021-10-19 10:06:09 -1000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-23 17:47:38 +0100 |
commit | c35f34361e94a81660c6e1f59d770f8a165e7f53 (patch) | |
tree | 836d771437604d9ff369f5de9aec63dc651a7cf5 /bitbake/lib/bb/compat.py | |
parent | d2f1a20a19a8a1d604e703d630421a2cdbe65e14 (diff) | |
download | poky-c35f34361e94a81660c6e1f59d770f8a165e7f53.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: 2a40a776efd7c28fa93a8556accccb79e3a7d0f0)
Signed-off-by: Chris Laplante <chris.laplante@agilent.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e2be6defbb9fcf25f9df04c3b452d0dba48dfd03)
Signed-off-by: Justin Bronder <jsbronder@cold-front.org>
Signed-off-by: Steve Sakoman <steve@sakoman.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.py | 10 |
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 | |||
7 | from collections import MutableMapping, KeysView, ValuesView, ItemsView, OrderedDict | ||
8 | from functools import total_ordering | ||
9 | |||
10 | |||