ThirdParty/CharDet/chardet/constants.py

changeset 12
1d8dd9706f46
parent 0
de9c2efb9d02
child 3537
7662053c3906
equal deleted inserted replaced
11:b0996e4a289e 12:1d8dd9706f46
35 eStart = 0 35 eStart = 0
36 eError = 1 36 eError = 1
37 eItsMe = 2 37 eItsMe = 2
38 38
39 SHORTCUT_THRESHOLD = 0.95 39 SHORTCUT_THRESHOLD = 0.95
40
41 import __builtin__
42 if not hasattr(__builtin__, 'False'):
43 False = 0
44 True = 1
45 else:
46 False = __builtin__.False
47 True = __builtin__.True

eric ide

mercurial