update to python3.7
This commit is contained in:
parent
da2d24a7f4
commit
80c4a755da
2912 changed files with 206832 additions and 100407 deletions
8
lib/python3.7/xml/parsers/__init__.py
Normal file
8
lib/python3.7/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.
|
||||
|
||||
"""
|
||||
8
lib/python3.7/xml/parsers/expat.py
Normal file
8
lib/python3.7/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