Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
8
Dependencies/Python/Lib/xml/parsers/__init__.py
vendored
Normal file
8
Dependencies/Python/Lib/xml/parsers/__init__.py
vendored
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
Dependencies/Python/Lib/xml/parsers/__pycache__/__init__.cpython-313.pyc
vendored
Normal file
BIN
Dependencies/Python/Lib/xml/parsers/__pycache__/__init__.cpython-313.pyc
vendored
Normal file
Binary file not shown.
BIN
Dependencies/Python/Lib/xml/parsers/__pycache__/expat.cpython-313.pyc
vendored
Normal file
BIN
Dependencies/Python/Lib/xml/parsers/__pycache__/expat.cpython-313.pyc
vendored
Normal file
Binary file not shown.
8
Dependencies/Python/Lib/xml/parsers/expat.py
vendored
Normal file
8
Dependencies/Python/Lib/xml/parsers/expat.py
vendored
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
|
Reference in New Issue
Block a user