| OLD | NEW |
| 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 | 233 |
| 234 ISO2022KRCharLenTable = (0, 0, 0, 0, 0, 0) | 234 ISO2022KRCharLenTable = (0, 0, 0, 0, 0, 0) |
| 235 | 235 |
| 236 ISO2022KRSMModel = {'classTable': ISO2022KR_cls, | 236 ISO2022KRSMModel = {'classTable': ISO2022KR_cls, |
| 237 'classFactor': 6, | 237 'classFactor': 6, |
| 238 'stateTable': ISO2022KR_st, | 238 'stateTable': ISO2022KR_st, |
| 239 'charLenTable': ISO2022KRCharLenTable, | 239 'charLenTable': ISO2022KRCharLenTable, |
| 240 'name': "ISO-2022-KR"} | 240 'name': "ISO-2022-KR"} |
| 241 | 241 |
| 242 # flake8: noqa | 242 # flake8: noqa |
| OLD | NEW |