##// END OF EJS Templates
strip: compress bundle2 backup using BZ...
strip: compress bundle2 backup using BZ Storing uncompressed bundle on disk would be a regression. Strip backup using bundle2 are now compressed when requested.

File last commit:

r19710:887ffa22 default
r26425:eb21b667 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