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