comparison tests/test-ancestor.py.out @ 39475:431068d7e9db

ancestor: add test showing inconsistency between __iter__ and __contains__
author Yuya Nishihara <yuya@tcha.org>
date Sat, 08 Sep 2018 10:48:42 +0900
parents a60dae060bc8
children 7eadc9407867
comparison
equal deleted inserted replaced
39474:a60dae060bc8 39475:431068d7e9db
14 membership: [7, 8] 14 membership: [7, 8]
15 iteration: [8, 7] 15 iteration: [8, 7]
16 % lazy ancestor set for [11, 13], stoprev = 6, inclusive = True 16 % lazy ancestor set for [11, 13], stoprev = 6, inclusive = True
17 membership: [11, 13, 7, 8] 17 membership: [11, 13, 7, 8]
18 iteration: [13, 11, 8, 7] 18 iteration: [13, 11, 8, 7]
19 % lazy ancestor set for [11, 13], stoprev = 11, inclusive = True
20 membership: [11, 13]
21 iteration: [13, 11]
22 % lazy ancestor set for [11, 13], stoprev = 12, inclusive = True
23 membership: [11, 13]
24 iteration: [13]