MinDalle_StableDiff/Python310/Lib/xml/parsers/expat.py

9 lines
248 B
Python
Raw Permalink Normal View History

2022-09-17 15:26:13 +03:00
"""Interface to the Expat non-validating XML parser."""
import sys
from pyexpat import *
# provide pyexpat submodules as xml.parsers.expat submodules
sys.modules['xml.parsers.expat.model'] = model
sys.modules['xml.parsers.expat.errors'] = errors