(self)
| 33 | |
| 34 | class Big5Prober(MultiByteCharSetProber): |
| 35 | def __init__(self): |
| 36 | super(Big5Prober, self).__init__() |
| 37 | self.coding_sm = CodingStateMachine(BIG5_SM_MODEL) |
| 38 | self.distribution_analyzer = Big5DistributionAnalysis() |
| 39 | self.reset() |
| 40 | |
| 41 | @property |
| 42 | def charset_name(self): |
nothing calls this directly
no test coverage detected