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

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/third_party/etree/ElementTree.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 # 1 #
2 # ElementTree 2 # ElementTree
3 # $Id: ElementTree.py 3440 2008-07-18 14:45:01Z fredrik $ 3 # $Id: ElementTree.py 3440 2008-07-18 14:45:01Z fredrik $
4 # 4 #
5 # light-weight XML support for Python 2.3 and later. 5 # light-weight XML support for Python 2.3 and later.
6 # 6 #
7 # history (since 1.2.6): 7 # history (since 1.2.6):
8 # 2005-11-12 fl added tostringlist/fromstringlist helpers 8 # 2005-11-12 fl added tostringlist/fromstringlist helpers
9 # 2006-07-05 fl merged in selected changes from the 1.3 sandbox 9 # 2006-07-05 fl merged in selected changes from the 1.3 sandbox
10 # 2006-07-05 fl removed support for 2.1 and earlier 10 # 2006-07-05 fl removed support for 2.1 and earlier
(...skipping 1648 matching lines...) Expand 10 before | Expand all | Expand 10 after
1659 1659
1660 # compatibility 1660 # compatibility
1661 XMLTreeBuilder = XMLParser 1661 XMLTreeBuilder = XMLParser
1662 1662
1663 # workaround circular import. 1663 # workaround circular import.
1664 try: 1664 try:
1665 from ElementC14N import _serialize_c14n 1665 from ElementC14N import _serialize_c14n
1666 _serialize["c14n"] = _serialize_c14n 1666 _serialize["c14n"] = _serialize_c14n
1667 except ImportError: 1667 except ImportError:
1668 pass 1668 pass
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698