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

Side by Side Diff: third_party/requests/packages/charade/euctwprober.py

Issue 25004007: Update 'requests' lib to v2.0. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/swarm_client
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 ######################## BEGIN LICENSE BLOCK ######################## 1 ######################## BEGIN LICENSE BLOCK ########################
2 # The Original Code is mozilla.org code. 2 # The Original Code is mozilla.org code.
3 # 3 #
4 # The Initial Developer of the Original Code is 4 # The Initial Developer of the Original Code is
5 # Netscape Communications Corporation. 5 # Netscape Communications Corporation.
6 # Portions created by the Initial Developer are Copyright (C) 1998 6 # Portions created by the Initial Developer are Copyright (C) 1998
7 # the Initial Developer. All Rights Reserved. 7 # the Initial Developer. All Rights Reserved.
8 # 8 #
9 # Contributor(s): 9 # Contributor(s):
10 # Mark Pilgrim - port to Python 10 # Mark Pilgrim - port to Python
(...skipping 21 matching lines...) Expand all
32 32
33 class EUCTWProber(MultiByteCharSetProber): 33 class EUCTWProber(MultiByteCharSetProber):
34 def __init__(self): 34 def __init__(self):
35 MultiByteCharSetProber.__init__(self) 35 MultiByteCharSetProber.__init__(self)
36 self._mCodingSM = CodingStateMachine(EUCTWSMModel) 36 self._mCodingSM = CodingStateMachine(EUCTWSMModel)
37 self._mDistributionAnalyzer = EUCTWDistributionAnalysis() 37 self._mDistributionAnalyzer = EUCTWDistributionAnalysis()
38 self.reset() 38 self.reset()
39 39
40 def get_charset_name(self): 40 def get_charset_name(self):
41 return "EUC-TW" 41 return "EUC-TW"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698