Always use OrderedDict from collections, and remove its implementation in slixmpp.thirdparty.

This commit is contained in:
Emmanuel Gil Peyrot
2014-08-17 21:49:03 +02:00
committed by Florent Le Coz
parent 8660148960
commit ed37174a2b
10 changed files with 8 additions and 140 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
import copy
import logging
from slixmpp.thirdparty import OrderedDict
from collections import OrderedDict
from slixmpp.xmlstream import ElementBase, ET
from slixmpp.plugins.xep_0004.stanza import FormField
+1 -1
View File
@@ -8,7 +8,7 @@
from slixmpp.stanza import Message
from slixmpp.util import unicode
from slixmpp.thirdparty import OrderedDict
from collections import OrderedDict
from slixmpp.xmlstream import ElementBase, ET, register_stanza_plugin, tostring
+1 -1
View File
@@ -6,7 +6,7 @@
See the file LICENSE for copying permission.
"""
from slixmpp.thirdparty import OrderedDict
from collections import OrderedDict
from slixmpp.xmlstream import ET, ElementBase