/usr/lib/python3/dist-packages/chardet/__pycache__
NameSizeModeActions
big5freq.cpython-310.pyc271300644editdlrm
big5prober.cpython-310.pyc10810644editdlrm
chardistribution.cpython-310.pyc56910644editdlrm
charsetgroupprober.cpython-310.pyc21800644editdlrm
charsetprober.cpython-310.pyc34340644editdlrm
codingstatemachine.cpython-310.pyc28530644editdlrm
compat.cpython-310.pyc3520644editdlrm
cp949prober.cpython-310.pyc10880644editdlrm
enums.cpython-310.pyc25350644editdlrm
escprober.cpython-310.pyc25820644editdlrm
escsm.cpython-310.pyc83290644editdlrm
eucjpprober.cpython-310.pyc23840644editdlrm
euckrfreq.cpython-310.pyc120140644editdlrm
euckrprober.cpython-310.pyc10890644editdlrm
euctwfreq.cpython-310.pyc271340644editdlrm
euctwprober.cpython-310.pyc10890644editdlrm
gb2312freq.cpython-310.pyc190580644editdlrm
gb2312prober.cpython-310.pyc10970644editdlrm
hebrewprober.cpython-310.pyc29700644editdlrm
jisfreq.cpython-310.pyc220860644editdlrm
jpcntx.cpython-310.pyc375930644editdlrm
langbulgarianmodel.cpython-310.pyc478620644editdlrm
langgreekmodel.cpython-310.pyc460520644editdlrm
langhebrewmodel.cpython-310.pyc445010644editdlrm
langhungarianmodel.cpython-310.pyc478220644editdlrm
langrussianmodel.cpython-310.pyc609550644editdlrm
langthaimodel.cpython-310.pyc446770644editdlrm
langturkishmodel.cpython-310.pyc445180644editdlrm
latin1prober.cpython-310.pyc43800644editdlrm
mbcharsetprober.cpython-310.pyc21990644editdlrm
mbcsgroupprober.cpython-310.pyc10840644editdlrm
mbcssm.cpython-310.pyc187110644editdlrm
sbcharsetprober.cpython-310.pyc30300644editdlrm
sbcsgroupprober.cpython-310.pyc16530644editdlrm
sjisprober.cpython-310.pyc24220644editdlrm
universaldetector.cpython-310.pyc57760644editdlrm
utf8prober.cpython-310.pyc19330644editdlrm
version.cpython-310.pyc3900644editdlrm
__init__.cpython-310.pyc18510644editdlrm
Edit: /usr/lib/python3/dist-packages/chardet/__pycache__/codingstatemachine.cpython-310.pyc (2853B)
o ÕH´_ã@s(ddlZddlmZGdd„deƒZdS)éNé)Ú MachineStatec@sDeZdZdZdd„Zdd„Zdd„Zdd „Zd d „Ze d d „ƒZ dS)ÚCodingStateMachinea– A state machine to verify a byte sequence for a particular encoding. For each byte the detector receives, it will feed that byte to every active state machine available, one byte at a time. The state machine changes its state based on its previous state and the byte it receives. There are 3 states in a state machine that are of interest to an auto-detector: START state: This is the state to start with, or a legal byte sequence (i.e. a valid code point) for character has been identified. ME state: This indicates that the state machine identified a byte sequence that is specific to the charset it is designed for and that there is no other possible encoding which can contain this byte sequence. This will to lead to an immediate positive answer for the detector. ERROR state: This indicates the state machine identified an illegal byte sequence for that encoding. This will lead to an immediate negative answer for this encoding. Detector will exclude this encoding from consideration from here on. cCs0||_d|_d|_d|_t t¡|_| ¡dS)Nr) Ú_modelÚ_curr_byte_posÚ_curr_char_lenÚ _curr_stateÚloggingÚ getLoggerÚ__name__ÚloggerÚreset)ÚselfÚsm©rús