summaryrefslogtreecommitdiffstats
path: root/Lib/xml
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-10-15 22:53:29 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-10-15 22:53:29 (GMT)
commit6006629c3c7bb6fa0a7901120149eca73ff40b8a (patch)
treed83673cf518870870e06b9aa5053e93b0ee95bb5 /Lib/xml
parent1ce150c675c946b5f626ca6bce2cb7eaba94d019 (diff)
downloadcpython-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.py2
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]