use Chinese characters with unicode version wxPyt

In-Reply-To: <20031027040420.11319.qmail@web15006.mail.bjs.yahoo.com>

BTW,how to know whether the wxpython is unicode version or not in an
application?

You could look at the unicode.py module in the demo. It has a test:

        if not wxUSE_UNICODE:
            self.AddLine(box)
            self.AddText(box, "Sorry, this wxPython was not built with
Unicode support.",
                         font = wxFont(12, wxSWISS, wxNORMAL, wxBOLD))
            self.AddLine(box)

Hugh