Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(520)

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/third_party/__init__.py

Issue 10908249: Remove windows line ending from repo files (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: fix copyright headers Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698