view tests/test-ui-color.py @ 11934:cf858e76e992

manifest: correct readdelta() according to parentdeltas
author Pradeepkumar Gayam <in3xes@gmail.com>
date Tue, 10 Aug 2010 22:28:52 +0530
parents 386e56ecfb78
children 4c50552fc9bc
line wrap: on
line source

#!/usr/bin/env python

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())