diff options
author | Nathan Fritz <nathan@andyet.net> | 2010-05-13 04:45:36 +0800 |
---|---|---|
committer | Tom Nichols <tmnichols@gmail.com> | 2010-05-14 01:47:19 +0800 |
commit | 4c410dd48aefc69682c30f28e830e5dee62a04ab (patch) | |
tree | af3fd36f92a9fbf4660b5264137680070a5da893 /sleekxmpp/stanza | |
parent | e0c32b6d9bc357e79db04ea3126a614e038af928 (diff) | |
download | slixmpp-4c410dd48aefc69682c30f28e830e5dee62a04ab.tar.gz slixmpp-4c410dd48aefc69682c30f28e830e5dee62a04ab.tar.bz2 slixmpp-4c410dd48aefc69682c30f28e830e5dee62a04ab.tar.xz slixmpp-4c410dd48aefc69682c30f28e830e5dee62a04ab.zip |
fixed a rather large memory leak
Diffstat (limited to 'sleekxmpp/stanza')
-rw-r--r-- | sleekxmpp/stanza/error.py | 2 | ||||
-rw-r--r-- | sleekxmpp/stanza/htmlim.py | 3 | ||||
-rw-r--r-- | sleekxmpp/stanza/nick.py | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/sleekxmpp/stanza/error.py b/sleekxmpp/stanza/error.py index a1454d1e..15af6624 100644 --- a/sleekxmpp/stanza/error.py +++ b/sleekxmpp/stanza/error.py @@ -22,7 +22,7 @@ class Error(ElementBase): self['type'] = 'cancel' self['condition'] = 'feature-not-implemented' if self.parent is not None: - self.parent['type'] = 'error' + self.parent()['type'] = 'error' def getCondition(self): for child in self.xml.getchildren(): diff --git a/sleekxmpp/stanza/htmlim.py b/sleekxmpp/stanza/htmlim.py index f9ee985f..60686e4a 100644 --- a/sleekxmpp/stanza/htmlim.py +++ b/sleekxmpp/stanza/htmlim.py @@ -31,4 +31,5 @@ class HTMLIM(ElementBase): return html def delHtml(self): - return self.__del__() + if self.parent is not None: + self.parent().xml.remove(self.xml) diff --git a/sleekxmpp/stanza/nick.py b/sleekxmpp/stanza/nick.py index 92a523d6..ac7e3604 100644 --- a/sleekxmpp/stanza/nick.py +++ b/sleekxmpp/stanza/nick.py @@ -22,4 +22,5 @@ class Nick(ElementBase): return self.xml.text def delNick(self): - return self.__del__() + if self.parent is not None: + self.parent().xml.remove(self.xml) |