Updates:
Status: Invalid
Comment #1 on issue 243 by limodou: UliPad causes an error when executing a
simple unicode print
http://code.google.com/p/ulipad/issues/detail?id=243
because u"本" is not a correct chinese unicode, you can print it and see:
print repr(u"本")
The correct way to create an unicode string in shell, you should do:
unicode("本", 'gbk')
