summaryrefslogtreecommitdiff
path: root/slixmpp/__init__.py
AgeCommit message (Collapse)Author
2022-10-03logger: remove NullHandler for the "slixmpp" handlernicoco
This does not seem to accomplish anything besides hiding the "using the slow, pure python stringprep" warning, unless you import logging and add another handler before to the "slixmpp" logger *BEFORE* importing slixmpp.
2022-03-19Only defuse stdlib through an env varmathieui
https://github.com/inducer/relate/issues/905
2021-06-28refactor: remove the now obsolete future_wrapper and asyncio-related modulemathieui
2021-02-11global: use defusedxml if it is availablemathieui
2021-02-11slixmpp: remove asyncio hack for older python versionsmathieui
2021-02-05global: rewrite copyright notice to use commentsmathieui
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