Mike Frysinger 31067c0ac5 tweak raise/dict syntax for Python 3 compat
Use the `raise` statement directly.

Switch to using .items() instead of .iteritems().  Python 3 doesn't
have .iteritems() as .items() is a generator, and these are small
enough that the Python 2 overhead should be negligible.

We have to run .keys() through list() in a few places as Python 3
uses a generator and we sometimes want to iterate more than once.
That's why we don't change all .keys() or .items() calls -- most
are in places where generators are fine.

Bug: https://crbug.com/gerrit/10418
Change-Id: I469899d9b77ffd77ccabb831bc4b217407fefe6f
2019-06-13 13:39:25 +00:00
..
2013-04-18 21:35:49 +05:30
2018-10-10 01:28:43 -04:00
2018-03-24 13:00:08 +05:30
2018-10-10 01:28:43 -04:00
2015-10-07 15:43:22 -07:00
2018-10-10 01:28:43 -04:00
2018-10-10 01:28:43 -04:00
2019-05-21 10:47:21 -06:00
2013-04-18 21:35:49 +05:30
2012-09-18 09:54:57 +02:00
2018-10-22 08:16:35 -07:00