From: Fred Drake Date: Sat, 23 Sep 2000 04:44:43 +0000 (+0000) Subject: Add a wrapper around the pyexpat module, making the "public" name of X-Git-Tag: v2.0b2~100 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=003b9250e3aaf8fc243f870702f430cebf9bb2ce;p=python Add a wrapper around the pyexpat module, making the "public" name of the module "xml.parsers.expat". --- diff --git a/Lib/xml/parsers/expat.py b/Lib/xml/parsers/expat.py new file mode 100644 index 0000000000..11359a0b27 --- /dev/null +++ b/Lib/xml/parsers/expat.py @@ -0,0 +1,4 @@ +"""Interface to the Expat non-validating XML parser.""" +__version__ = '$Revision$' + +from pyexpat import *