diff options
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Lib/xml/parsers')
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Lib/xml/parsers/__init__.py | 8 | ||||
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Lib/xml/parsers/expat.py | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/parsers/__init__.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/parsers/__init__.py new file mode 100644 index 0000000000..ee4380b1b3 --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/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/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/parsers/expat.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/parsers/expat.py new file mode 100644 index 0000000000..d58388117d --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/parsers/expat.py @@ -0,0 +1,4 @@ +"""Interface to the Expat non-validating XML parser."""
+__version__ = '$Revision$'
+
+from pyexpat import *
|