update windows build to Python 3.7
This commit is contained in:
parent
73105fa71e
commit
ddc59ab92d
5761 changed files with 750298 additions and 213405 deletions
8
Lib/xml/parsers/__init__.py
Normal file
8
Lib/xml/parsers/__init__.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
"""Python interfaces to XML parsers.
|
||||
|
||||
This package contains one module:
|
||||
|
||||
expat -- Python wrapper for James Clark's Expat parser, with namespace
|
||||
support.
|
||||
|
||||
"""
|
||||
BIN
Lib/xml/parsers/__pycache__/__init__.cpython-37.pyc
Normal file
BIN
Lib/xml/parsers/__pycache__/__init__.cpython-37.pyc
Normal file
Binary file not shown.
BIN
Lib/xml/parsers/__pycache__/expat.cpython-37.pyc
Normal file
BIN
Lib/xml/parsers/__pycache__/expat.cpython-37.pyc
Normal file
Binary file not shown.
8
Lib/xml/parsers/expat.py
Normal file
8
Lib/xml/parsers/expat.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
"""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
|
||||
Loading…
Add table
Add a link
Reference in a new issue