diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-02-22 14:05:50 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-02-22 14:05:50 (GMT) |
commit | 7edbd4ffb4928d447c7d2a73e7cb7deddb30f0ac (patch) | |
tree | c9c08c012a49d432d97a5ac10753420a376e47a0 /Lib/xml/dom/__init__.py | |
parent | f5d3ea00b97910bd14fa32fea46c29fae5775edd (diff) | |
download | cpython-7edbd4ffb4928d447c7d2a73e7cb7deddb30f0ac.zip cpython-7edbd4ffb4928d447c7d2a73e7cb7deddb30f0ac.tar.gz cpython-7edbd4ffb4928d447c7d2a73e7cb7deddb30f0ac.tar.bz2 |
Patch #103885: Add dynamic registration and lookup of DOM implementations.
Diffstat (limited to 'Lib/xml/dom/__init__.py')
-rw-r--r-- | Lib/xml/dom/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/xml/dom/__init__.py b/Lib/xml/dom/__init__.py index 2dbb695..aa19ca1 100644 --- a/Lib/xml/dom/__init__.py +++ b/Lib/xml/dom/__init__.py @@ -115,3 +115,5 @@ class NamespaceErr(DOMException): class InvalidAccessErr(DOMException): code = INVALID_ACCESS_ERR + +from domreg import getDOMImplementation,registerDOMImplementation |