summaryrefslogtreecommitdiff
path: root/sleekxmpp/thirdparty/__init__.py
blob: 502be6b6cdaea93058a5d1a16d928a1439f3bef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
try:
    from collections import OrderedDict
except:
    from sleekxmpp.thirdparty.ordereddict import OrderedDict

try:
    from gnupg import GPG
except:
    from sleekxmpp.thirdparty.gnupg import GPG

from sleekxmpp.thirdparty.mini_dateutil import tzutc, tzoffset, parse_iso