Anyone have any luck using fepy's pyexpat.py managed code replacement with
xmpp.py on IronPython?

I'm having some trouble getting the xmpp client to talk to the xmppd
server, even though the CPython version works fine. About the only
difference, I think, is pyexpat.py.

In fepy's pyexpat, I don't understand how:

    def Parse(self, data, isfinal=False):
        self._data.append(data)
        if isfinal:
            data = "".join(self._data)
            self._data = None
            self._parse(data)

will do any parsing until later, but I'm pretty sure that the CPython
version starts parsing right away.

Am I missing something obvious? Any pointers appreciated!

-Doug
_______________________________________________
Users mailing list
Users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to