diff options
author | Paul Prescod <prescod@prescod.net> | 2000-10-13 20:11:42 (GMT) |
---|---|---|
committer | Paul Prescod <prescod@prescod.net> | 2000-10-13 20:11:42 (GMT) |
commit | 4221ff0ee1c6af843e11f8bb143850102b64e0c7 (patch) | |
tree | 7ca94905bb9ba2cd6813b5277a648e90e0e0bae8 /Lib/xml | |
parent | d5fd45ffa587dc2f49f94350233f4ba1427a6684 (diff) | |
download | cpython-4221ff0ee1c6af843e11f8bb143850102b64e0c7.zip cpython-4221ff0ee1c6af843e11f8bb143850102b64e0c7.tar.gz cpython-4221ff0ee1c6af843e11f8bb143850102b64e0c7.tar.bz2 |
Clear siblings, now that they are being set.
Diffstat (limited to 'Lib/xml')
-rw-r--r-- | Lib/xml/dom/minidom.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index 6dc3a52..00bd4ca 100644 --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -136,6 +136,8 @@ class Node: self.childNodes[-1].unlink() del self.childNodes[-1] # probably not most efficient! self.childNodes = None + self.previousSibling = None + self.nextSibling = None if self.attributes: for attr in self._attrs.values(): self.removeAttributeNode(attr) |