diff options
Diffstat (limited to 'contrib/tools/python3/Lib/xml/parsers')
-rw-r--r-- | contrib/tools/python3/Lib/xml/parsers/__init__.py | 8 | ||||
-rw-r--r-- | contrib/tools/python3/Lib/xml/parsers/expat.py | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/contrib/tools/python3/Lib/xml/parsers/__init__.py b/contrib/tools/python3/Lib/xml/parsers/__init__.py new file mode 100644 index 0000000000..eb314a3b40 --- /dev/null +++ b/contrib/tools/python3/Lib/xml/parsers/__init__.py @@ -0,0 +1,8 @@ +"""Python interfaces to XML parsers. + +This package contains one module: + +expat -- Python wrapper for James Clark's Expat parser, with namespace + support. + +""" diff --git a/contrib/tools/python3/Lib/xml/parsers/expat.py b/contrib/tools/python3/Lib/xml/parsers/expat.py new file mode 100644 index 0000000000..bcbe9fb1f8 --- /dev/null +++ b/contrib/tools/python3/Lib/xml/parsers/expat.py @@ -0,0 +1,8 @@ +"""Interface to the Expat non-validating XML parser.""" +import sys + +from pyexpat import * + +# provide pyexpat submodules as xml.parsers.expat submodules +sys.modules['xml.parsers.expat.model'] = model +sys.modules['xml.parsers.expat.errors'] = errors |