diff options
author | Lance Stout <lancestout@gmail.com> | 2012-01-17 23:03:48 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-01-17 23:03:48 -0800 |
commit | 86d8736dccd698b55ab9ddffe57326bad8851319 (patch) | |
tree | cc4043733c96d486d8811987c85151a842bb203b /tests/test_stanza_element.py | |
parent | 2923f5656150448e10f6f3a58a63470a987d47e1 (diff) | |
download | slixmpp-86d8736dccd698b55ab9ddffe57326bad8851319.tar.gz slixmpp-86d8736dccd698b55ab9ddffe57326bad8851319.tar.bz2 slixmpp-86d8736dccd698b55ab9ddffe57326bad8851319.tar.xz slixmpp-86d8736dccd698b55ab9ddffe57326bad8851319.zip |
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!!'
Diffstat (limited to 'tests/test_stanza_element.py')
0 files changed, 0 insertions, 0 deletions