diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-15 22:53:29 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-15 22:53:29 (GMT) |
commit | 6006629c3c7bb6fa0a7901120149eca73ff40b8a (patch) | |
tree | d83673cf518870870e06b9aa5053e93b0ee95bb5 /Lib/xml | |
parent | 1ce150c675c946b5f626ca6bce2cb7eaba94d019 (diff) | |
download | cpython-6006629c3c7bb6fa0a7901120149eca73ff40b8a.zip cpython-6006629c3c7bb6fa0a7901120149eca73ff40b8a.tar.gz cpython-6006629c3c7bb6fa0a7901120149eca73ff40b8a.tar.bz2 |
Remove obsolete __dynamic__ distinction.
Diffstat (limited to 'Lib/xml')
-rw-r--r-- | Lib/xml/dom/minidom.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index 8a84d0f..510817e 100644 --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -34,8 +34,6 @@ import xml.dom if list is type([]): class NodeList(list): - __dynamic__ = 0 - def item(self, index): if 0 <= index < len(self): return self[index] |