[Python-checkins] CVS: python/dist/src/Lib/xml/dom minidom.py,1.39,1.40

Tim Peters tim_one@users.sourceforge.net
Mon, 15 Oct 2001 15:53:32 -0700


Update of /cvsroot/python/python/dist/src/Lib/xml/dom
In directory usw-pr-cvs1:/tmp/cvs-serv5600/python/Lib/xml/dom

Modified Files:
	minidom.py 
Log Message:
Remove obsolete __dynamic__ distinction.


Index: minidom.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/dom/minidom.py,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** minidom.py	2001/09/29 04:58:32	1.39
--- minidom.py	2001/10/15 22:53:29	1.40
***************
*** 35,40 ****
  if list is type([]):
      class NodeList(list):
-         __dynamic__ = 0
- 
          def item(self, index):
              if 0 <= index < len(self):
--- 35,38 ----