diff options
author | Lance Stout <lancestout@gmail.com> | 2012-07-20 00:25:32 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-07-20 00:25:32 -0700 |
commit | 060c9ab6794cbe6c62c312b1f42bd3767ff66b80 (patch) | |
tree | 4802e7d13643dc4546e44bdd2e135dd9ad73b34c /sleekxmpp/xmlstream | |
parent | 78f03253983779673beaf3c102ae315707a49d2c (diff) | |
parent | acd9c32a9f8ba5476ac238a7536c838789ed4ab5 (diff) | |
download | slixmpp-060c9ab6794cbe6c62c312b1f42bd3767ff66b80.tar.gz slixmpp-060c9ab6794cbe6c62c312b1f42bd3767ff66b80.tar.bz2 slixmpp-060c9ab6794cbe6c62c312b1f42bd3767ff66b80.tar.xz slixmpp-060c9ab6794cbe6c62c312b1f42bd3767ff66b80.zip |
Merge branch 'master' into develop
Diffstat (limited to 'sleekxmpp/xmlstream')
-rw-r--r-- | sleekxmpp/xmlstream/jid.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sleekxmpp/xmlstream/jid.py b/sleekxmpp/xmlstream/jid.py index 281bf4ee..1582164a 100644 --- a/sleekxmpp/xmlstream/jid.py +++ b/sleekxmpp/xmlstream/jid.py @@ -143,3 +143,6 @@ class JID(object): def __hash__(self): """Hash a JID based on the string version of its full JID.""" return hash(self.full) + + def __copy__(self): + return JID(self.jid) |