Home
last modified time | relevance | path

Searched full:pythonioencoding (Results 1 – 25 of 34) sorted by relevance

12

/external/python/cpython3/Lib/test/
Dtest_utf8_mode.py132 PYTHONIOENCODING='')
138 # PYTHONIOENCODING has the priority over PYTHONUTF8
140 PYTHONIOENCODING="latin1")
147 PYTHONIOENCODING=":namereplace")
Dtest_sys.py153 b"h\xe9", PYTHONIOENCODING='latin-1')
570 env["PYTHONIOENCODING"] = "cp424"
577 env["PYTHONIOENCODING"] = "ascii:replace"
583 env["PYTHONIOENCODING"] = "ascii"
592 env["PYTHONIOENCODING"] = "ascii:"
601 env["PYTHONIOENCODING"] = ":surrogateescape"
614 env["PYTHONIOENCODING"] = ""
675 env['PYTHONIOENCODING'] = encoding
677 env.pop('PYTHONIOENCODING', None)
Dtest_embed.py157 env = dict(os.environ, PYTHONIOENCODING="utf-8:surrogateescape")
Dtest_cmd_line.py284 env['PYTHONIOENCODING'] = encoding
Dtest_tarfile.py2263 PYTHONIOENCODING='ascii')
2274 PYTHONIOENCODING='ascii')
Dtest_pydoc.py498 result = run_pydoc('test.test_pydoc.nonascii', PYTHONIOENCODING='ascii')
/external/python/cpython3/Python/
Dpylifecycle.c1830 char *pythonioencoding = NULL; in init_sys_streams() local
1867 char *opt = Py_GETENV("PYTHONIOENCODING"); in init_sys_streams()
1870 pythonioencoding = _PyMem_Strdup(opt); in init_sys_streams()
1871 if (pythonioencoding == NULL) { in init_sys_streams()
1875 err = strchr(pythonioencoding, ':'); in init_sys_streams()
1884 /* Does PYTHONIOENCODING contain an encoding? */ in init_sys_streams()
1885 if (pythonioencoding[0]) { in init_sys_streams()
1887 encoding = pythonioencoding; in init_sys_streams()
1892 PYTHONIOENCODING=latin1 behaves as in init_sys_streams()
1893 PYTHONIOENCODING=latin1:strict. */ in init_sys_streams()
[all …]
/external/python/cpython2/Lib/test/
Dtest_sys.py194 b"h\xe9", PYTHONIOENCODING='latin-1')
429 if not (os.environ.get('PYTHONIOENCODING') or
456 env["PYTHONIOENCODING"] = "cp424"
462 env["PYTHONIOENCODING"] = "ascii:replace"
Dtest_file2k.py863 env['PYTHONIOENCODING'] = encoding
Dtest_zipfile.py1799 PYTHONIOENCODING='ascii:backslashreplace')
/external/flatbuffers/
Dappveyor.yml11 PYTHONIOENCODING: UTF-8
/external/python/cpython3/Doc/using/
Dcmdline.rst609 .. envvar:: PYTHONIOENCODING
824 overridden using :envvar:`PYTHONIOENCODING` as usual.
881 :envvar:`PYTHONIOENCODING` (just as they can be in the default locale-aware
/external/python/cpython2/Misc/
Dpython.man418 .IP PYTHONIOENCODING
/external/python/cpython3/Misc/
Dpython.man410 .IP PYTHONIOENCODING
/external/harfbuzz_ng/src/
DMakefile.am208 $(AM_V_GEN) PYTHONIOENCODING=UTF-8 $(GLIB_MKENUMS) \
/external/python/cpython2/Modules/
Dmain.c111 PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n\
/external/python/cpython2/Misc/NEWS.d/
D2.6b1.rst57 New environment variable PYTHONIOENCODING.
/external/python/cpython2/Doc/using/
Dcmdline.rst582 .. envvar:: PYTHONIOENCODING
/external/python/cpython2/Python/
Dpythonrun.c293 if ((p = Py_GETENV("PYTHONIOENCODING")) && *p != '\0') { in Py_InitializeEx()
340 locale even if PYTHONIOENCODING is set. */ in Py_InitializeEx()
/external/python/cpython3/Doc/c-api/
Dinit.rst325 It overrides :envvar:`PYTHONIOENCODING` values, and allows embedding code
329 :envvar:`PYTHONIOENCODING` and/or default values (depending on other
/external/yapf/yapftests/
Dyapf_test.py1355 env={'PYTHONIOENCODING': 'cp936'})
/external/python/cpython3/Misc/NEWS.d/
D3.7.1rc1.rst107 PYTHONIOENCODING=":" is now ignored instead of setting the error handler to
D3.5.2rc1.rst102 PYTHONIOENCODING now has priority over locale in setting the error handler
/external/python/cpython3/Lib/test/test_warnings/
D__init__.py1244 PYTHONIOENCODING="utf-8",
/external/python/cpython3/Doc/library/
Dsys.rst1370 setting the :envvar:`PYTHONIOENCODING` environment variable before

12