view tests/test-ui-color.py @ 14075:bc101902a68d

revlog: introduce _chunkbase to allow filelog to override Used by revlog.revision to retrieve the base-chunk in a delta chain.
author Sune Foldager <cryo@cyanite.org>
date Sat, 30 Apr 2011 16:33:47 +0200
parents 4c50552fc9bc
children 842a9179132c
line wrap: on
line source

from hgext import color

# ensure errors aren't buffered
testui = color.colorui()
testui.pushbuffer()
testui.write('buffered\n')
testui.warn('warning\n')
testui.write_err('error\n')
print repr(testui.popbuffer())