dict.items() on Python 3 returns a generator over the values of the dictionary,
hence we can't delete elements while iterating over dict.items() in Python 3.
Details
Details
- Reviewers
durin42 - Group Reviewers
hg-reviewers - Commits
- rHG3328d53254d9: py3: use list() to get a list of items using dict.items()
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.