[Zope3-checkins] CVS: zopeproducts/xml/dom - expatbuilder.py:1.2

Philipp von Weitershausen philikon@philikon.de
Fri, 20 Jun 2003 18:12:30 -0400


Update of /cvs-repository/zopeproducts/xml/dom
In directory cvs.zope.org:/tmp/cvs-serv15168

Modified Files:
	expatbuilder.py 
Log Message:
Remove reference to ParsedXML.DOM from comments.


=== zopeproducts/xml/dom/expatbuilder.py 1.1 => 1.2 ===
--- zopeproducts/xml/dom/expatbuilder.py:1.1	Fri Jun 20 11:11:38 2003
+++ zopeproducts/xml/dom/expatbuilder.py	Fri Jun 20 18:12:29 2003
@@ -22,11 +22,11 @@
 # Warning!
 #
 # This module is tightly bound to the implementation details of the
-# Parsed XML DOM and can't be used with other DOM implementations.  This
-# is due, in part, to a lack of appropriate methods in the DOM (there is
-# no way to create Entity and Notation nodes via the DOM Level 2
-# interface), and for performance.  The later is the cause of some fairly
-# cryptic code.
+# zopeproducts.xml.dom implementation and can't be used with other DOM
+# implementations.  This is due, in part, to a lack of appropriate
+# methods in the DOM (there is no way to create Entity and Notation
+# nodes via the DOM Level 2 interface), and for performance.  The
+# later is the cause of some fairly cryptic code.
 #
 # Performance hacks:
 #
@@ -76,8 +76,10 @@
 
 
 class ExpatBuilder:
-    """Document builder that uses Expat to build a ParsedXML.DOM document
-    instance."""
+    """
+    Document builder that uses Expat to build a xml.dom.core.Document
+    instance.
+    """
 
     def __init__(self, options=None):
         if options is None: