(self)
| 36 | ONE_CHAR_PROB = 0.5 |
| 37 | |
| 38 | def __init__(self): |
| 39 | super(UTF8Prober, self).__init__() |
| 40 | self.coding_sm = CodingStateMachine(UTF8_SM_MODEL) |
| 41 | self._num_mb_chars = None |
| 42 | self.reset() |
| 43 | |
| 44 | def reset(self): |
| 45 | super(UTF8Prober, self).reset() |
nothing calls this directly
no test coverage detected