| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| import codecs | ||
|
|
||
| def create_win32_code_page_codec(cp): | ||
| from codecs import code_page_encode, code_page_decode | ||
|
|
||
| def encode(input, errors='strict'): | ||
| return code_page_encode(cp, input, errors) | ||
|
|
||
| def decode(input, errors='strict'): | ||
| return code_page_decode(cp, input, errors, True) | ||
|
|
||
| class IncrementalEncoder(codecs.IncrementalEncoder): | ||
| def encode(self, input, final=False): | ||
| return code_page_encode(cp, input, self.errors)[0] | ||
|
|
||
| class IncrementalDecoder(codecs.BufferedIncrementalDecoder): | ||
| def _buffer_decode(self, input, errors, final): | ||
| return code_page_decode(cp, input, errors, final) | ||
|
|
||
| class StreamWriter(codecs.StreamWriter): | ||
| def encode(self, input, errors='strict'): | ||
| return code_page_encode(cp, input, errors) | ||
|
|
||
| class StreamReader(codecs.StreamReader): | ||
| def decode(self, input, errors, final): | ||
| return code_page_decode(cp, input, errors, final) | ||
|
|
||
| return codecs.CodecInfo( | ||
| name=f'cp{cp}', | ||
| encode=encode, | ||
| decode=decode, | ||
| incrementalencoder=IncrementalEncoder, | ||
| incrementaldecoder=IncrementalDecoder, | ||
| streamreader=StreamReader, | ||
| streamwriter=StreamWriter, | ||
| ) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| All Windows code pages are now supported as "cpXXX" codecs on Windows. |
| Back | FazBrowse Home | New Git URL |
Uh oh!
There was an error while loading. Please reload this page.