mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-04 19:38:03 +03:00
[Py2to3] Clean-up the use of keys() on dictionary objects.
To make the code more Python 3 compatible, I've made a few changes to how we handle keys() or iterkeys() calls on dictionaries. All functionality should remain the same. * Remove the use of .keys() or .iterkeys() when iterating through a dictionary. * Remove the use of .keys() when checking if key exists in dictionary. * Replace dict.keys() with list(dict) to obtain a list of dictionary keys. In Python 3 dict.keys() returns a dict_keys object, not a list.
This commit is contained in:
parent
16da4d851e
commit
8b50f3cdbd
47 changed files with 95 additions and 97 deletions
|
@ -60,9 +60,8 @@ def generate():
|
|||
"""
|
||||
Return the generated output.
|
||||
"""
|
||||
keys = MESSAGES.keys()
|
||||
# the keys are sorted in the .mo file
|
||||
keys.sort()
|
||||
keys = sorted(MESSAGES)
|
||||
offsets = []
|
||||
ids = strs = ''
|
||||
for _id in keys:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue