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 # Netscape Communications Corporation. | 5 # Netscape Communications Corporation. |
6 # Portions created by the Initial Developer are Copyright (C) 2001 | 6 # Portions created by the Initial Developer are Copyright (C) 2001 |
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 UTF8Prober(), | 45 UTF8Prober(), |
46 SJISProber(), | 46 SJISProber(), |
47 EUCJPProber(), | 47 EUCJPProber(), |
48 GB2312Prober(), | 48 GB2312Prober(), |
49 EUCKRProber(), | 49 EUCKRProber(), |
50 CP949Prober(), | 50 CP949Prober(), |
51 Big5Prober(), | 51 Big5Prober(), |
52 EUCTWProber() | 52 EUCTWProber() |
53 ] | 53 ] |
54 self.reset() | 54 self.reset() |
OLD | NEW |