Searched refs:EncodedFile (Results 1 – 3 of 3) sorted by relevance
| /third_party/python/Lib/ |
| D | codecs.py | 919 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'): function 1123 sys.stdout = EncodedFile(sys.stdout, 'latin-1', 'utf-8') 1126 sys.stdin = EncodedFile(sys.stdin, 'utf-8', 'latin-1')
|
| /third_party/python/Lib/test/ |
| D | test_codecs.py | 1761 ef = codecs.EncodedFile(f, 'utf-16-le', 'utf-8') 1765 ef = codecs.EncodedFile(f, 'utf-8', 'latin-1') 2297 with codecs.EncodedFile(f, "latin-1", "utf-8") as ef: 3317 sr = codecs.EncodedFile(bio, 'utf-8', 'utf-16-le') 3328 sr = codecs.EncodedFile(bio, 'utf-8', 'utf-16-le')
|
| /third_party/python/Doc/library/ |
| D | codecs.rst | 208 .. function:: EncodedFile(file, data_encoding, file_encoding=None, errors='strict')
|