Commit edb56158 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 0bd076b1
...@@ -108,7 +108,7 @@ class Tree(object): ...@@ -108,7 +108,7 @@ class Tree(object):
child = children[i] child = children[i]
for k in children[i].keyv: for k in children[i].keyv:
if not (klo <= k < khi): if not (klo <= k < khi):
panic("children[%d] keys are outside allowed range" % i) panic("children[%d] key %d is outside allowed range [%s, %s)" % (i, k, klo, khi))
t.keyv = tuple(keyv) t.keyv = tuple(keyv)
t.children = tuple(children) t.children = tuple(children)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment