diff options
author | Chris Laplante <chris.laplante@agilent.com> | 2020-08-25 12:51:41 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-08-26 09:05:38 +0100 |
commit | 77441a08d4ba27996a651651e65f63af76e2503e (patch) | |
tree | 994b1fa370372cf0d2c45fa066b3ae5fb90e6366 /bitbake/lib/bb/compat.py | |
parent | 392b2cf529660da75013352a4249492ac55b36e6 (diff) | |
download | poky-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.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 | |||