| OLD | NEW |
| 1 ######################## BEGIN LICENSE BLOCK ######################## | 1 ######################## BEGIN LICENSE BLOCK ######################## |
| 2 # The Original Code is Mozilla Universal charset detector code. | 2 # The Original Code is Mozilla Universal charset detector code. |
| 3 # | 3 # |
| 4 # The Initial Developer of the Original Code is | 4 # The Initial Developer of the Original Code is |
| 5 # Simon Montagu | 5 # Simon Montagu |
| 6 # Portions created by the Initial Developer are Copyright (C) 2005 | 6 # Portions created by the Initial Developer are Copyright (C) 2005 |
| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 192 |
| 193 Win1255HebrewModel = { | 193 Win1255HebrewModel = { |
| 194 'charToOrderMap': win1255_CharToOrderMap, | 194 'charToOrderMap': win1255_CharToOrderMap, |
| 195 'precedenceMatrix': HebrewLangModel, | 195 'precedenceMatrix': HebrewLangModel, |
| 196 'mTypicalPositiveRatio': 0.984004, | 196 'mTypicalPositiveRatio': 0.984004, |
| 197 'keepEnglishLetter': False, | 197 'keepEnglishLetter': False, |
| 198 'charsetName': "windows-1255" | 198 'charsetName': "windows-1255" |
| 199 } | 199 } |
| 200 | 200 |
| 201 # flake8: noqa | 201 # flake8: noqa |
| OLD | NEW |