Skip to content
Snippets Groups Projects
Commit ba899954 authored by timeless's avatar timeless
Browse files

hghave: switch from iteritems to items

With this, test-hghave.t passes on python 3.

Four features fail because mercurial still is not py3 safe:
absimport
cacheable
hardlink
defaultcacerts

But that will be resolved automatically eventually.
parent 47eab0cb
No related branches found
No related tags found
No related merge requests found
......@@ -13,9 +13,9 @@
checks = hghave.checks
def list_features():
for name, feature in sorted(checks.iteritems()):
for name, feature in sorted(checks.items()):
desc = feature[1]
print(name + ':', desc)
def test_features():
failed = 0
......@@ -17,9 +17,9 @@
desc = feature[1]
print(name + ':', desc)
def test_features():
failed = 0
for name, feature in checks.iteritems():
for name, feature in checks.items():
check, _ = feature
try:
check()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment