Jacek Konieczny

Results 18 comments of Jacek Konieczny

i have rewritten the xmlextra.endElement() function so that it does not eat error propagation. the described behaviour resulted from the extensive use of 'finally' statements in error trapping. please take...

forgot a return statement {{{ def endElement(self, tag): "" self._current+="" % (tag,) self._level -= 1 if self._level > 1: return if self._level==1: xml=self._head+self._current+self._tail doc=libxml2.parseDoc(xml) try: node = doc.getRootElement().children except: doc.freeDoc()...

I have tested with xmlextra.3.py, when the SASLAuthenticationFailed exception raised, it still can't work right. the exception was eation by xmlpaser. see the follow message: File "C:\Python25\Lib\site-packages\pyxmpp\xmlextra.py", line 229, in...

SASLAuthenticationFailed exception can be handled right in pyxmpp 1.0.1. I have tested it in win32 platform. --anonymous

Assuming (assumption based on the last comment) it is fixed. --jajcus

The same problem still happens (Ubuntu lucid, PyXMPP version 1.1.1) - this exception doesn't seem to be propagated upwards. Also tested with the fixes mentioned previously in this ticket -...

(In [712]) - meta-data updates (re #22) --jajcus

On 2015-09-22 22:18, x011 wrote: > Any idea what's causing this connection to fail? > > INFO:root:-- Resolving address of 'chat.facebook.com'... > INFO:root:-- Connecting to 173.252.122.5:5222... > INFO:root:-- Connected to...

PyXMPP currently does not implement any XMPP stream compression extension. But when using TLS encryption the stream may be compressed anyway (TLS standard includes compression). > And XMPP STREAM is...

2.0alpha2 is quite old, can you reproduce this with current pyxmpp2 master from github?