diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-05-10 16:13:50 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:24:04 +0100 |
commit | 314541f60041adff40be32fdfa3f426133c657ca (patch) | |
tree | a59c265b4798d3449e7326f594b14a4465e91fcd /bitbake/lib/toaster/contrib/tts/config.py | |
parent | 96ce54315056ddba15b67d943a3778181b765bce (diff) | |
download | poky-314541f60041adff40be32fdfa3f426133c657ca.tar.gz |
bitbake: toaster: use items and range instead of old APIs
Used items() and range() APIs instead of iteritems() and
xrange() as latter don't exist in python 3
[YOCTO #9584]
(Bitbake rev: 372dd3abcb201bd9ac2c3189c5505d3578ce0dd0)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/contrib/tts/config.py')
-rw-r--r-- | bitbake/lib/toaster/contrib/tts/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/contrib/tts/config.py b/bitbake/lib/toaster/contrib/tts/config.py index 40d45f3b7a..87b427cc3d 100644 --- a/bitbake/lib/toaster/contrib/tts/config.py +++ b/bitbake/lib/toaster/contrib/tts/config.py | |||
@@ -74,7 +74,7 @@ BACKLOGFILE = os.path.join(os.path.dirname(__file__), "backlog.txt") | |||
74 | # task states | 74 | # task states |
75 | def enum(*sequential, **named): | 75 | def enum(*sequential, **named): |
76 | enums = dict(zip(sequential, range(len(sequential))), **named) | 76 | enums = dict(zip(sequential, range(len(sequential))), **named) |
77 | reverse = dict((value, key) for key, value in enums.iteritems()) | 77 | reverse = dict((value, key) for key, value in enums.items()) |
78 | enums['reverse_mapping'] = reverse | 78 | enums['reverse_mapping'] = reverse |
79 | return type('Enum', (), enums) | 79 | return type('Enum', (), enums) |
80 | 80 | ||