##// END OF EJS Templates
test-archive: gracefully handle HTTPErrors on get-with-headers...
test-archive: gracefully handle HTTPErrors on get-with-headers This avoids pritting out a traceback when a get-with-headers call causes hgweb to respond with an HTTPError code.

File last commit:

r18603:2251b318 default
r18770:dcb6a99e default
Show More
test-lrucachedict.py.out
26 lines | 346 B | text/plain | TextLexer
/ tests / test-lrucachedict.py.out
'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