sapling/tests/test-ui-color.py
Dan Villiom Podlaski Christiansen f385faac7a *: kill all unnecessary shebangs.
2010-10-26 12:18:39 +02:00

10 lines
213 B
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())