Remove the now useless Queue wrapper in slixmpp.util.

This commit is contained in:
Emmanuel Gil Peyrot
2014-09-21 19:28:13 +02:00
committed by Florent Le Coz
parent 06de587ed2
commit 61f89eef2e
7 changed files with 8 additions and 22 deletions

View File

@@ -8,8 +8,7 @@
import socket
import threading
from slixmpp.util import Queue
from queue import Queue
class TestLiveSocket(object):

View File

@@ -7,8 +7,7 @@
"""
import socket
from slixmpp.util import Queue
from queue import Queue
class TestSocket(object):

View File

@@ -7,10 +7,10 @@
"""
import unittest
from queue import Queue
from xml.parsers.expat import ExpatError
from slixmpp import ClientXMPP, ComponentXMPP
from slixmpp.util import Queue
from slixmpp.stanza import Message, Iq, Presence
from slixmpp.test import TestSocket, TestLiveSocket
from slixmpp.xmlstream import ET