Hi, I'm using wxpython in a project I'm working and know I've got the need to parse a xml file, which is already done. I used the following code to achieve it:
from xml.sax import saxlib, saxexts parser = saxexts.make_parser() handler = handler() -> method that creates my handler parser.setDocumentHandler(handler) parser.feed(input) result = handler.getoutput() When I use this separately, only in python it works fine. When I use it within wxpython, I get a segmentation fault when creating the parser. Has anyone ever had this problem? I'm using wxPython-2.5.3.1 and python-2.3. Thanks! JP _______________________________________________ XML-SIG maillist - XML-SIG@python.org http://mail.python.org/mailman/listinfo/xml-sig