##// END OF EJS Templates
tests: drop unnecessary glob that causes a warning on Windows...
tests: drop unnecessary glob that causes a warning on Windows This was triggered by 3778884197f0.

File last commit:

r19710:887ffa22 default
r23465:7e6d73f6 default
Show More
test-lrucachedict.py.out
31 lines | 426 B | text/plain | TextLexer
/ tests / test-lrucachedict.py.out
Siddharth Agarwal
util: add an LRU cache dict...
r18603 'a' in d: True
d['a']: va
'b' in d: True
d['b']: vb
'c' in d: True
d['c']: vc
'd' in d: True
d['d']: vd
'a' in d: False
'b' in d: True
d['b']: vb
'c' in d: True
d['c']: vc
'd' in d: True
d['d']: vd
'e' in d: True
d['e']: ve
'b' in d: True
d['b']: vb2
'c' in d: True
d['c']: vc2
'd' in d: True
d['d']: vd
'e' in d: False
'f' in d: True
d['f']: vf
Siddharth Agarwal
lrucachedict: implement clear()
r19710 'b' in d: False
'c' in d: False
'd' in d: False
'e' in d: False
'f' in d: False