mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
merge 11164
This commit is contained in:
commit
867754e3e3
9 changed files with 10 additions and 105 deletions
|
@ -18,24 +18,3 @@ etree -- The ElementTree XML library. This is a subset of the full
|
|||
|
||||
|
||||
__all__ = ["dom", "parsers", "sax", "etree"]
|
||||
|
||||
_MINIMUM_XMLPLUS_VERSION = (0, 8, 4)
|
||||
|
||||
|
||||
try:
|
||||
import _xmlplus
|
||||
except ImportError:
|
||||
pass
|
||||
else:
|
||||
try:
|
||||
v = _xmlplus.version_info
|
||||
except AttributeError:
|
||||
# _xmlplus is too old; ignore it
|
||||
pass
|
||||
else:
|
||||
if v >= _MINIMUM_XMLPLUS_VERSION:
|
||||
import sys
|
||||
_xmlplus.__path__.extend(__path__)
|
||||
sys.modules[__name__] = _xmlplus
|
||||
else:
|
||||
del v
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue