diff options
author | Lance Stout <lancestout@gmail.com> | 2012-02-17 14:41:31 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-02-17 14:41:31 -0800 |
commit | 9d5eb864d1a370a32f933a77b48363950542c759 (patch) | |
tree | 977907e6fa345b4607f0097797a024f456891894 /sleekxmpp/clientxmpp.py | |
parent | 86a482e032ed7fae1085b41cf637c5336b2cefb2 (diff) | |
download | slixmpp-9d5eb864d1a370a32f933a77b48363950542c759.tar.gz slixmpp-9d5eb864d1a370a32f933a77b48363950542c759.tar.bz2 slixmpp-9d5eb864d1a370a32f933a77b48363950542c759.tar.xz slixmpp-9d5eb864d1a370a32f933a77b48363950542c759.zip |
More import cleanups based on pyflakes results.
Diffstat (limited to 'sleekxmpp/clientxmpp.py')
-rw-r--r-- | sleekxmpp/clientxmpp.py | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/sleekxmpp/clientxmpp.py b/sleekxmpp/clientxmpp.py index d2a6bfee..458af2b7 100644 --- a/sleekxmpp/clientxmpp.py +++ b/sleekxmpp/clientxmpp.py @@ -15,22 +15,12 @@ from __future__ import absolute_import, unicode_literals import logging -import base64 -import sys -import hashlib -import random -import threading - -import sleekxmpp -from sleekxmpp import plugins -from sleekxmpp import stanza -from sleekxmpp import features + +from sleekxmpp.stanza import StreamFeatures from sleekxmpp.basexmpp import BaseXMPP -from sleekxmpp.stanza import * -from sleekxmpp.xmlstream import XMLStream, RestartStream -from sleekxmpp.xmlstream import StanzaBase, ET, register_stanza_plugin -from sleekxmpp.xmlstream.matcher import * -from sleekxmpp.xmlstream.handler import * +from sleekxmpp.xmlstream import XMLStream +from sleekxmpp.xmlstream.matcher import MatchXPath +from sleekxmpp.xmlstream.handler import Callback # Flag indicating if DNS SRV records are available for use. try: |