xref: /aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/xml/parsers/expat.py (revision cda5da8d549138a6648c5ee6d7a49cf8f4a657be)
1*cda5da8dSAndroid Build Coastguard Worker"""Interface to the Expat non-validating XML parser."""
2*cda5da8dSAndroid Build Coastguard Workerimport sys
3*cda5da8dSAndroid Build Coastguard Worker
4*cda5da8dSAndroid Build Coastguard Workerfrom pyexpat import *
5*cda5da8dSAndroid Build Coastguard Worker
6*cda5da8dSAndroid Build Coastguard Worker# provide pyexpat submodules as xml.parsers.expat submodules
7*cda5da8dSAndroid Build Coastguard Workersys.modules['xml.parsers.expat.model'] = model
8*cda5da8dSAndroid Build Coastguard Workersys.modules['xml.parsers.expat.errors'] = errors
9