Home | History | Annotate | Download | only in python2.7

Lines Matching full:curr

77         curr = root[1]                                  # start at the first node
78 while curr is not root:
79 yield curr[2] # yield the curr[KEY]
80 curr = curr[1] # move to next node
86 curr = root[0] # start at the last node
87 while curr is not root:
88 yield curr[2] # yield the curr[KEY]
89 curr = curr[0] # move to previous node