diff options
author | Fred Drake <fdrake@acm.org> | 2000-07-31 23:59:54 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-07-31 23:59:54 (GMT) |
commit | ede77bfda42b95da733ef0e266d5681de308138c (patch) | |
tree | 498f417baf686b65c88f51ba8c61b8079b08eb6c /Lib/xml/parsers | |
parent | fbd3b45bb7ddcd8c5d235e565990a59d8c0b9092 (diff) | |
download | cpython-ede77bfda42b95da733ef0e266d5681de308138c.zip cpython-ede77bfda42b95da733ef0e266d5681de308138c.tar.gz cpython-ede77bfda42b95da733ef0e266d5681de308138c.tar.bz2 |
Rename the "parser" package to "parsers" to be compatible with the PyXML
project.
Diffstat (limited to 'Lib/xml/parsers')
-rw-r--r-- | Lib/xml/parsers/__init__.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/xml/parsers/__init__.py b/Lib/xml/parsers/__init__.py new file mode 100644 index 0000000..eb314a3 --- /dev/null +++ b/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. + +""" |