D7013: py3: define and use pycompat.itervalues()

2019-10-08 Thread indygreg (Gregory Szorc)
Closed by commit rHG74802979dd9d: py3: define and use pycompat.itervalues() (authored by indygreg). This revision was automatically updated to reflect the committed changes. This revision was not accepted when it landed; it landed in state "Needs Review". CHANGED PRIOR TO COMMIT

D7013: py3: define and use pycompat.itervalues()

2019-10-07 Thread indygreg (Gregory Szorc)
indygreg created this revision. Herald added a reviewer: martinvonz. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY .itervalues() only exists on Python 2. Python 3's equivalent is .values(). But we don't want to blindly use .values()