| OLD | NEW |
| 1 """Third party includes for the installer. | 1 """Third party includes for the installer. |
| 2 | 2 |
| 3 Module contains: | 3 Module contains: |
| 4 etree -- The ElementTree XML library. This is a subset of the full | 4 etree -- The ElementTree XML library. This is a subset of the full |
| 5 ElementTree XML release. | 5 ElementTree XML release. |
| 6 | 6 |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 | 9 |
| 10 __all__ = ["etree"] | 10 __all__ = ["etree"] |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 except AttributeError: | 22 except AttributeError: |
| 23 # _xmlplus is too old; ignore it | 23 # _xmlplus is too old; ignore it |
| 24 pass | 24 pass |
| 25 else: | 25 else: |
| 26 if v >= _MINIMUM_XMLPLUS_VERSION: | 26 if v >= _MINIMUM_XMLPLUS_VERSION: |
| 27 import sys | 27 import sys |
| 28 _xmlplus.__path__.extend(__path__) | 28 _xmlplus.__path__.extend(__path__) |
| 29 sys.modules[__name__] = _xmlplus | 29 sys.modules[__name__] = _xmlplus |
| 30 else: | 30 else: |
| 31 del v | 31 del v |
| OLD | NEW |