Make internal hash dep sort order match external one.
This commit is contained in:
parent
3dd6cbc556
commit
afbd0e77d0
1 changed files with 2 additions and 1 deletions
|
@ -1506,7 +1506,8 @@ def _cmp_key(self):
|
||||||
2. The hash of each of this node's dependencies' cmp_keys.
|
2. The hash of each of this node's dependencies' cmp_keys.
|
||||||
"""
|
"""
|
||||||
return self._cmp_node() + (
|
return self._cmp_node() + (
|
||||||
tuple(sorted(hash(d) for d in self.dependencies.values())),)
|
tuple(hash(self.dependencies[name])
|
||||||
|
for name in sorted(self.dependencies)),)
|
||||||
|
|
||||||
|
|
||||||
def colorized(self):
|
def colorized(self):
|
||||||
|
|
Loading…
Reference in a new issue