[thorstenp] remove useless import

This commit is contained in:
Yann Leboulanger 2008-10-20 17:54:02 +00:00
parent 86271b6e3c
commit c2c681e05c
25 changed files with 13 additions and 45 deletions

View File

@ -24,7 +24,6 @@
##
from itertools import *
import xmpp
import xmpp.features_nb
import gajim
import helpers

View File

@ -23,8 +23,6 @@
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
##
import re
docdir = '../'
datadir = '../'

View File

@ -17,7 +17,6 @@
Provides library with all Non-SASL and SASL authentication mechanisms.
Can be used both for client and transport authentication.
'''
import sys
from protocol import *
from auth import *
from client import PlugIn

View File

@ -21,7 +21,6 @@ examples of xmpppy structures usage.
These classes can be used for simple applications "AS IS" though.
"""
import socket
import debug
Debug=debug
Debug.DEBUGGING_IS_ON=1

View File

@ -23,9 +23,6 @@ examples of xmpppy structures usage.
These classes can be used for simple applications "AS IS" though.
'''
import socket
import debug
import transports_nb, dispatcher_nb, auth_nb, roster_nb
from client import *

View File

@ -41,8 +41,6 @@ import traceback
import time
import os
import types
if 'TERM' in os.environ:
colors_enabled=True
else:

View File

@ -19,7 +19,7 @@ Protocol module contains tools that is needed for processing of
xmpp-related data structures.
"""
from simplexml import Node,NodeBuilder,ustr
from simplexml import Node, NodeBuilder
import time
NS_ACTIVITY ='http://jabber.org/protocol/activity' # XEP-0108
NS_ADDRESS ='http://jabber.org/protocol/address' # XEP-0033

View File

@ -27,11 +27,13 @@ Transports are stackable so you - f.e. TLS use HTPPROXYsocket or TCPsocket as mo
Also exception 'error' is defined to allow capture of this module specific exceptions.
"""
import socket,select,base64,dispatcher
import socket
import select
import base64
import dispatcher
from simplexml import ustr
from client import PlugIn
from protocol import *
import sys
import os
import errno

View File

@ -14,7 +14,9 @@
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
import socket,select,base64,dispatcher_nb
import socket
import base64
import dispatcher_nb
import struct
from simplexml import ustr
from client import PlugIn
@ -28,7 +30,6 @@ import errno
import time
import traceback
import thread
import logging
log = logging.getLogger('gajim.c.x.transports_nb')

View File

@ -23,7 +23,6 @@
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
##
import os
import time
import socket
@ -482,4 +481,4 @@ class ConnectionHandlersZeroconf(ConnectionVcard, ConnectionBytestream, connecti
def remove_transfer(self, file_props, remove_from_list = True):
pass
# vim: se ts=3:
# vim: se ts=3:

View File

@ -18,7 +18,6 @@
##
from common import gajim
import sys
import select
import re
from string import split
@ -335,4 +334,4 @@ class Zeroconf:
return True
# vim: se ts=3:
# vim: se ts=3:

View File

@ -57,7 +57,6 @@ from common import connection
from common import passwords
from common import zeroconf
from common import dataforms
from common import pep
from common.exceptions import GajimGeneralException

View File

@ -28,8 +28,6 @@ import sys
import gtk
import gtkgui_helpers
import dialogs
from common import gajim
from common import helpers
@ -187,7 +185,6 @@ class FeaturesWindow:
def gpg_available(self):
if os.name == 'nt':
return False
from common import gajim
return gajim.HAVE_GPG
def network_manager_available(self):
@ -300,7 +297,6 @@ class FeaturesWindow:
return False
def pycrypto_available(self):
from common import gajim
return gajim.HAVE_PYCRYPTO
def docutils_available(self):
@ -311,7 +307,6 @@ class FeaturesWindow:
return True
def pysexy_available(self):
from common import gajim
return gajim.HAVE_PYSEXY
# vim: se ts=3:

View File

@ -28,7 +28,6 @@
# gajim-remote help will show you the D-BUS API of Gajim
import sys
import os
import locale
import signal
signal.signal(signal.SIGINT, signal.SIG_DFL) # ^C exits the application

View File

@ -251,7 +251,6 @@ from session import ChatControlSession
import common.sleepy
from common.xmpp import idlequeue
from common.zeroconf import connection_zeroconf
from common import nslookup
from common import proxy65_manager
from common import socks5

View File

@ -45,7 +45,6 @@ from common import helpers
from chat_control import ChatControl
from chat_control import ChatControlBase
from conversation_textview import ConversationTextview
from common.exceptions import GajimGeneralException
#(status_image, type, nick, shown_nick)

View File

@ -21,8 +21,6 @@
'''Window to create new post for discussion groups service.'''
import gtk
from common import gajim, xmpp
import gtkgui_helpers

View File

@ -48,7 +48,6 @@ import sys
import os
import pango
from StringIO import StringIO
import thread
try:
import IPython

View File

@ -23,7 +23,6 @@
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
##
import os
import gobject
if __name__ == '__main__':
# install _() func before importing dbus_support

View File

@ -22,8 +22,6 @@
import gtkgui_helpers
import dataforms_widget
import dialogs
from common import dataforms
from common import gajim
from common import xmpp

View File

@ -14,7 +14,6 @@ try:
import _growl
except Exception:
_growl = False
import types
import struct
import md5
import socket
@ -243,4 +242,4 @@ class GrowlNotifier(object):
def notifyCB(self, userdata):
print "Got notify in pyland", userdata
# vim: se ts=3:
# vim: se ts=3:

View File

@ -1,6 +1,6 @@
import sys, os
from growl.Growl import GrowlNotifier
from common import gajim, helpers
from common import gajim
if sys.platform != "darwin":
@ -62,4 +62,4 @@ def filterString(string):
return string
# vim: se ts=3:
# vim: se ts=3:

View File

@ -33,8 +33,6 @@ import dialogs
import vcard
from common import gajim
from common.i18n import Q_
class ProfileWindow:
'''Class for our information window'''

View File

@ -50,7 +50,6 @@ import cell_renderer_image
import tooltips
import message_control
import adhoc_commands
import notify
import features_window
from common import gajim
@ -62,13 +61,10 @@ from common import pep
from message_window import MessageWindowMgr
from session import ChatControlSession
from common import dbus_support
if dbus_support.supported:
from music_track_listener import MusicTrackListener
import dbus
from lastfm_track_listener import LastFMTrackListener
from common.xmpp.protocol import NS_COMMANDS, NS_FILE, NS_MUC
from common.pep import MOODS, ACTIVITIES

View File

@ -39,7 +39,6 @@ import locale
import os
import gtkgui_helpers
import message_control
from common import helpers
from common import gajim