2011-01-15 14:15:33 -08:00
|
|
|
try:
|
2011-01-19 14:49:39 -08:00
|
|
|
from collections import OrderedDict
|
2011-01-15 14:15:33 -08:00
|
|
|
except:
|
|
|
|
from sleekxmpp.thirdparty.ordereddict import OrderedDict
|
2011-08-03 17:00:51 -07:00
|
|
|
|
2012-04-06 12:13:04 -07:00
|
|
|
try:
|
|
|
|
from gnupg import GPG
|
|
|
|
except:
|
|
|
|
from sleekxmpp.thirdparty.gnupg import GPG
|
|
|
|
|
2012-07-31 21:33:19 -07:00
|
|
|
from sleekxmpp.thirdparty import socks
|
2011-08-04 20:20:22 -07:00
|
|
|
from sleekxmpp.thirdparty.mini_dateutil import tzutc, tzoffset, parse_iso
|