tests/test-ancestor.py.out
changeset 18091 f7f8159caad3
parent 18079 b3ba69692f8a
child 22355 731b2a90983b
equal deleted inserted replaced
18090:9abc55ef85b5 18091:f7f8159caad3
    32 [6, 9, 12]
    32 [6, 9, 12]
    33 % ancestors of [10, 11, 12] and not of [13]
    33 % ancestors of [10, 11, 12] and not of [13]
    34 [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12]
    34 [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12]
    35 % ancestors of [13] and not of [10, 11, 12]
    35 % ancestors of [13] and not of [10, 11, 12]
    36 [8, 13]
    36 [8, 13]
       
    37 % lazy ancestor set for [], stoprev = 0, inclusive = False
       
    38 []
       
    39 % lazy ancestor set for [11, 13], stoprev = 0, inclusive = False
       
    40 [7, 8, 3, 4, 1, 0]
       
    41 % lazy ancestor set for [11, 13], stoprev = 0, inclusive = True
       
    42 [11, 13, 7, 8, 3, 4, 1, 0]
       
    43 % lazy ancestor set for [11, 13], stoprev = 6, inclusive = False
       
    44 [7, 8]
       
    45 % lazy ancestor set for [11, 13], stoprev = 6, inclusive = True
       
    46 [11, 13, 7, 8]