slixmpp/sleekxmpp/xmlstream
Lance Stout 86d8736dcc Hash JIDs based on full JID string.
This makes JID objects equivalent to strings in dictionaries, etc.

>>> j = JID('foo@example.com')
>>> s = 'foo@example.com'
>>> d = {j: 'yay'}
>>> d[j]
'yay'
>>> d[s]
'yay'
>>> d[s] = 'yay!!'
>>> d[j]
'yay!!'
2012-01-17 23:03:48 -08:00
..
handler
matcher Pre-parse StanzaPath paths to speed up matching. 2012-01-17 22:28:44 -08:00
__init__.py
filesocket.py
jid.py Hash JIDs based on full JID string. 2012-01-17 23:03:48 -08:00
scheduler.py
stanzabase.py Pre-parse StanzaPath paths to speed up matching. 2012-01-17 22:28:44 -08:00
test.py
test.xml
testclient.py
tostring.py
xmlstream.py