Lance Stout
Lance Stout
We may be able to get things to work without needing to duplicate everything by using: # -*- coding: utf-8 from **future** import unicode_literals It would obviate the need to...
Is this occurring as you're shutting down Sleek?
I'm having difficulty reproducing this. I see you're using Python 2.6, but with RC2 or the develop branch? And are you just running one of the examples, or some custom...
Sadly, that looks to be the best solution for now (for Python 2, this won't work for 3 because filesocket isn't used there). The only other way to do it...
I'm working on moving away from `iterparse()` and working directly with the expat parser (see https://gist.github.com/3716705). If you see a way to get the error correction hooks you need in...
Interesting, I'll look into this. I know there are several issues related to state changes like this that need addressing. For now, this looks like a good candidate for the...
Good catch. The `self.stop.clear()` call really ought to be in `connect()` instead of `_connect()`. That should eliminate the race condition.
Interesting. This sounds like something that would be suited for the XEP-0198 plugin, since that lets you know the stanza made it to at least the server.
The errors are sometimes raised during the shutdown process as daemon threads in SleekXMPP are terminated in arbitrary order and references are destroyed.