##// END OF EJS Templates
ancestor: add test showing inconsistency between __iter__ and __contains__
ancestor: add test showing inconsistency between __iter__ and __contains__

File last commit:

r39511:431068d7 default
r39511:431068d7 default
Show More
test-ancestor.py.out
24 lines | 896 B | text/plain | TextLexer
/ tests / test-ancestor.py.out
Siddharth Agarwal
ancestor: add lazy membership testing to lazyancestors...
r18091 % lazy ancestor set for [], stoprev = 0, inclusive = False
Siddharth Agarwal
test-ancestor: test iteration for lazyancestors...
r23329 membership: []
iteration: []
Siddharth Agarwal
ancestor: add lazy membership testing to lazyancestors...
r18091 % lazy ancestor set for [11, 13], stoprev = 0, inclusive = False
Siddharth Agarwal
test-ancestor: test iteration for lazyancestors...
r23329 membership: [7, 8, 3, 4, 1, 0]
Boris Feld
ancestors: actually iterate over ancestors in topological order (issue5979)...
r39509 iteration: [8, 7, 4, 3, 2, 1, 0]
Pierre-Yves David
test-ancestor: add a test for `ancestor` with ancestry within the initset...
r22355 % lazy ancestor set for [1, 3], stoprev = 0, inclusive = False
Siddharth Agarwal
test-ancestor: test iteration for lazyancestors...
r23329 membership: [1, 0]
Boris Feld
ancestors: actually iterate over ancestors in topological order (issue5979)...
r39509 iteration: [1, 0]
Siddharth Agarwal
ancestor: add lazy membership testing to lazyancestors...
r18091 % lazy ancestor set for [11, 13], stoprev = 0, inclusive = True
Siddharth Agarwal
test-ancestor: test iteration for lazyancestors...
r23329 membership: [11, 13, 7, 8, 3, 4, 1, 0]
Boris Feld
ancestors: ensure a consistent order even in the "inclusive" case...
r39510 iteration: [13, 11, 8, 7, 4, 3, 2, 1, 0]
Siddharth Agarwal
ancestor: add lazy membership testing to lazyancestors...
r18091 % lazy ancestor set for [11, 13], stoprev = 6, inclusive = False
Siddharth Agarwal
test-ancestor: test iteration for lazyancestors...
r23329 membership: [7, 8]
Boris Feld
ancestors: actually iterate over ancestors in topological order (issue5979)...
r39509 iteration: [8, 7]
Siddharth Agarwal
ancestor: add lazy membership testing to lazyancestors...
r18091 % lazy ancestor set for [11, 13], stoprev = 6, inclusive = True
Siddharth Agarwal
test-ancestor: test iteration for lazyancestors...
r23329 membership: [11, 13, 7, 8]
Boris Feld
ancestors: ensure a consistent order even in the "inclusive" case...
r39510 iteration: [13, 11, 8, 7]
Yuya Nishihara
ancestor: add test showing inconsistency between __iter__ and __contains__
r39511 % lazy ancestor set for [11, 13], stoprev = 11, inclusive = True
membership: [11, 13]
iteration: [13, 11]
% lazy ancestor set for [11, 13], stoprev = 12, inclusive = True
membership: [11, 13]
iteration: [13]