[Zope3-checkins] CVS: zopeproducts/xmldom/interfaces - core.py:1.2
Philipp von Weitershausen
philikon@philikon.de
Thu, 19 Jun 2003 15:01:45 -0400
Update of /cvs-repository/zopeproducts/xmldom/interfaces
In directory cvs.zope.org:/tmp/cvs-serv25442
Modified Files:
core.py
Log Message:
Replace actual docstring with a reference to the DOM spec. The information
provided there is much more detailled.
=== zopeproducts/xmldom/interfaces/core.py 1.1 => 1.2 ===
--- zopeproducts/xmldom/interfaces/core.py:1.1 Thu Jun 19 14:56:21 2003
+++ zopeproducts/xmldom/interfaces/core.py Thu Jun 19 15:01:44 2003
@@ -588,27 +588,27 @@
def appendData(arg):
"""
- Return True if this attribute is of type ID, False otherwise.
+ See http://www.w3.org/TR/DOM-Level-3-Core/core.html
"""
def deleteData(offset, count):
"""
- Return True if this attribute is of type ID, False otherwise.
+ See http://www.w3.org/TR/DOM-Level-3-Core/core.html
"""
def insertData(offset, arg):
"""
- Return True if this attribute is of type ID, False otherwise.
+ See http://www.w3.org/TR/DOM-Level-3-Core/core.html
"""
def replaceData(offset, count, arg):
"""
- Return True if this attribute is of type ID, False otherwise.
+ See http://www.w3.org/TR/DOM-Level-3-Core/core.html
"""
def substringData(offset, count):
"""
- Return True if this attribute is of type ID, False otherwise.
+ See http://www.w3.org/TR/DOM-Level-3-Core/core.html
"""
class IAttr(INode):