I encountered a problem while using function parseString
xml.sax.parseString(src, builder)
TypeError: 'str' does not support the buffer interface
I trying change this calling to:
xml.sax.parseString(bytes(src,'utf-8'), builder)
but still not working
Python 3.2