diff options
author | Fred Drake <fdrake@acm.org> | 2000-09-23 04:44:43 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-09-23 04:44:43 (GMT) |
commit | 003b9250e3aaf8fc243f870702f430cebf9bb2ce (patch) | |
tree | 241be154dd8eda8d178f34b5865d74be2f283913 /Lib | |
parent | c32741d1abc170129d2be40853e91b14ea131d5d (diff) | |
download | cpython-003b9250e3aaf8fc243f870702f430cebf9bb2ce.zip cpython-003b9250e3aaf8fc243f870702f430cebf9bb2ce.tar.gz cpython-003b9250e3aaf8fc243f870702f430cebf9bb2ce.tar.bz2 |
Add a wrapper around the pyexpat module, making the "public" name of
the module "xml.parsers.expat".
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/xml/parsers/expat.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/xml/parsers/expat.py b/Lib/xml/parsers/expat.py new file mode 100644 index 0000000..11359a0 --- /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 * |