[Python-checkins] CVS: python/dist/src/Lib/xml/dom __init__.py,1.9,1.10
Fred L. Drake
fdrake@users.sourceforge.net
2001年11月30日 07:37:35 -0800
Update of /cvsroot/python/python/dist/src/Lib/xml/dom
In directory usw-pr-cvs1:/tmp/cvs-serv11721/Lib/xml/dom
Modified Files:
__init__.py
Log Message:
Added the convenience constants that are present in PyXML to make these
more similar.
Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/dom/__init__.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** __init__.py 2001年02月22日 14:04:09 1.9
--- __init__.py 2001年11月30日 15:37:33 1.10
***************
*** 117,119 ****
--- 117,125 ----
code = INVALID_ACCESS_ERR
+
+ XML_NAMESPACE = "http://www.w3.org/XML/1998/namespace"
+ XMLNS_NAMESPACE = "http://www.w3.org/2000/xmlns/"
+ XHTML_NAMESPACE = "http://www.w3.org/1999/xhtml"
+ EMPTY_NAMESPACE = None
+
from domreg import getDOMImplementation,registerDOMImplementation