summaryrefslogtreecommitdiff
path: root/slixmpp/__init__.py
AgeCommit message (Collapse)Author
2018-08-08Fix compatibility with python 3.5 and 3.6mathieui
which do not have loop.start_tls and require the old ssl implementation.
2018-08-07Fix TLS with python 3.7mathieui
Use the "new" sslproto API instead of the deprecated TLS API. Also remove the unused "socket" parameter in XMLStream.__init__.
2015-09-23Fix support for python 3.4 <= 3.4.2mathieui
asyncio module is provisional, which means it gets updated everytime
2015-09-14(Temporary) fix for python 3.5mathieui
This will work until the old ssl implementation is finally deprecated. Hopefully, new features to painlessy implement starttls will be around by then.
2015-02-28Change the API to make iq.send() always return a futuremathieui
remove coroutine_wrapper, add a future_wrapper (which is only needed when the result stanza can be cached). Update the documentation as well.
2015-02-23Import xmlstream.asyncio and coroutine_wrapper at the top levelmathieui
Since they will be used quite a lot in plugins.
2014-09-28Don’t check for logging.NullHandler, it got added in Python 3.1.Emmanuel Gil Peyrot
2014-07-22Remove unused RestartStream exceptionFlorent Le Coz
2014-07-17Rename to slixmppFlorent Le Coz