Searched refs:dont_write_bytecode (Results 1 – 25 of 41) sorted by relevance
12
/external/python/cpython2/Lib/distutils/tests/ |
D | test_util.py | 16 old_dont_write_bytecode = sys.dont_write_bytecode 17 sys.dont_write_bytecode = True 21 sys.dont_write_bytecode = old_dont_write_bytecode
|
D | test_install_lib.py | 45 @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile not enabled') 94 old_dont_write_bytecode = sys.dont_write_bytecode 95 sys.dont_write_bytecode = True 99 sys.dont_write_bytecode = old_dont_write_bytecode
|
D | test_build_py.py | 63 if sys.dont_write_bytecode: 140 old_dont_write_bytecode = sys.dont_write_bytecode 141 sys.dont_write_bytecode = True 145 sys.dont_write_bytecode = old_dont_write_bytecode
|
D | test_bdist_dumb.py | 91 if not sys.dont_write_bytecode:
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_build_py.py | 61 if sys.dont_write_bytecode: 91 @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled') 108 @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled') 164 old_dont_write_bytecode = sys.dont_write_bytecode 165 sys.dont_write_bytecode = True 169 sys.dont_write_bytecode = old_dont_write_bytecode
|
D | test_install_lib.py | 37 @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled') 100 old_dont_write_bytecode = sys.dont_write_bytecode 101 sys.dont_write_bytecode = True 105 sys.dont_write_bytecode = old_dont_write_bytecode
|
D | test_util.py | 291 old_dont_write_bytecode = sys.dont_write_bytecode 292 sys.dont_write_bytecode = True 296 sys.dont_write_bytecode = old_dont_write_bytecode
|
D | test_bdist_dumb.py | 89 if not sys.dont_write_bytecode:
|
/external/python/cpython3/Tools/importbench/ |
D | importbench.py | 63 sys.dont_write_bytecode = True 76 sys.dont_write_bytecode = False 86 sys.dont_write_bytecode = True 91 sys.dont_write_bytecode = False 102 assert not sys.dont_write_bytecode 121 assert not sys.dont_write_bytecode 206 assert not sys.dont_write_bytecode
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | util.py | 307 if sys.dont_write_bytecode: 311 original = sys.dont_write_bytecode 312 sys.dont_write_bytecode = False 316 sys.dont_write_bytecode = original
|
D | test_abc.py | 878 @unittest.skipIf(sys.dont_write_bytecode, "sys.dont_write_bytecode is true") 937 sys.dont_write_bytecode = True 942 sys.dont_write_bytecode = False
|
/external/python/pybind11/tests/test_embed/ |
D | test_interpreter.cpp | 249 bool dont_write_bytecode = sys.attr("dont_write_bytecode").cast<bool>(); variable 253 sys.attr("dont_write_bytecode") = dont_write_bytecode; in __anon194191710402()
|
/external/python/cpython2/Lib/test/ |
D | test_runpy.py | 173 if not sys.dont_write_bytecode: 196 if not sys.dont_write_bytecode: 251 if not sys.dont_write_bytecode:
|
D | test_import.py | 91 if not sys.dont_write_bytecode: 111 @unittest.skipIf(sys.dont_write_bytecode, 139 @unittest.skipIf(sys.dont_write_bytecode, 475 if not sys.dont_write_bytecode:
|
/external/grpc-grpc/src/boringssl/ |
D | gen_build_yaml.py | 21 sys.dont_write_bytecode = True
|
/external/python/cpython3/Lib/test/ |
D | test_runpy.py | 318 if not sys.dont_write_bytecode: 359 if not sys.dont_write_bytecode: 418 if not sys.dont_write_bytecode: 697 if not sys.dont_write_bytecode:
|
D | test_imp.py | 178 if not sys.dont_write_bytecode: 299 @unittest.skipIf(sys.dont_write_bytecode,
|
/external/python/cpython2/Lib/distutils/command/ |
D | install_lib.py | 123 if sys.dont_write_bytecode:
|
D | build_py.py | 376 if sys.dont_write_bytecode:
|
/external/python/cpython3/Lib/distutils/command/ |
D | install_lib.py | 119 if sys.dont_write_bytecode:
|
D | build_py.py | 375 if sys.dont_write_bytecode:
|
/external/avb/test/ |
D | image_handler_unittest.py | 35 sys.dont_write_bytecode = True
|
/external/python/cpython2/Lib/distutils/ |
D | util.py | 362 if sys.dont_write_bytecode:
|
/external/python/cpython3/Lib/distutils/ |
D | util.py | 362 if sys.dont_write_bytecode:
|
/external/python/cpython3/Python/ |
D | initconfig.c | 1312 int dont_write_bytecode = 0; in config_read_env_vars() local 1313 _Py_get_env_flag(use_env, &dont_write_bytecode, "PYTHONDONTWRITEBYTECODE"); in config_read_env_vars() 1314 if (dont_write_bytecode) { in config_read_env_vars()
|
12