repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
This commit was manufactured by cvs2svn to create tag 'r222'.
[python/dscho.git]
/
Lib
/
xml
/
parsers
/
expat.py
blob
dfcdd15d411d9f179616f97dd19aa8ff9163a88e
1
"""Interface to the Expat non-validating XML parser."""
2
__version__
=
'$Revision$'
3
4
import
sys
5
6
try
:
7
from
pyexpat
import
*
8
except
ImportError
:
9
del
sys
.
modules
[
__name__
]
10
del
sys
11
raise
12
13
del
sys