Browse Source

[bugfix] properly handle py3 in HashMap.items (fixes #50)

pull/54/head
Andrei 8 years ago
parent
commit
5c4cad41a6
  1. 5
      disco/util/hashmap.py
  2. 6
      tests/util/hashmap.py

5
disco/util/hashmap.py

@ -11,7 +11,10 @@ class HashMap(dict):
return iter(self)
def items(self):
return six.iteritems(self)
if six.PY3:
return super(HashMap, self).items()
else:
return super(HashMap, self).iteritems()
def find(self, predicate):
if not callable(predicate):

6
tests/util/hashmap.py

@ -38,3 +38,9 @@ def test_hashmap_builtins(hashmap):
assert item in hashmap
assert hashmap.popitem()[1] > 1
def test_hashmap_items(hashmap):
assert len(list(hashmap.items())) == 100000
assert list(hashmap.items())[0][0] == 0
assert list(hashmap.items())[0][1] == hashmap[0]

Loading…
Cancel
Save