MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / GB2312Prober

Class GB2312Prober

thirdparty/chardet/gb2312prober.py:33–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31from .mbcssm import GB2312_SM_MODEL
32
33class GB2312Prober(MultiByteCharSetProber):
34 def __init__(self):
35 super(GB2312Prober, self).__init__()
36 self.coding_sm = CodingStateMachine(GB2312_SM_MODEL)
37 self.distribution_analyzer = GB2312DistributionAnalysis()
38 self.reset()
39
40 @property
41 def charset_name(self):
42 return "GB2312"
43
44 @property
45 def language(self):
46 return "Chinese"

Callers 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…