Searched refs:dont_write_bytecode (Results 1 – 25 of 38) sorted by relevance
12
/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/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/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 | 296 if sys.dont_write_bytecode: 300 original = sys.dont_write_bytecode 301 sys.dont_write_bytecode = False 305 sys.dont_write_bytecode = original
|
D | test_abc.py | 865 @unittest.skipIf(sys.dont_write_bytecode, "sys.dont_write_bytecode is true") 924 sys.dont_write_bytecode = True 929 sys.dont_write_bytecode = False
|
/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/python/cpython3/Lib/test/ |
D | test_runpy.py | 316 if not sys.dont_write_bytecode: 357 if not sys.dont_write_bytecode: 416 if not sys.dont_write_bytecode: 687 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/grpc-grpc/src/boringssl/ |
D | gen_build_yaml.py | 21 sys.dont_write_bytecode = True
|
/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/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/avb/test/ |
D | image_handler_unittest.py | 35 sys.dont_write_bytecode = True
|
/external/python/cpython3/Modules/ |
D | main.c | 449 int dont_write_bytecode; /* Py_DontWriteBytecodeFlag, -B, PYTHONDONTWRITEBYTECODE */ member 821 cmdline->dont_write_bytecode++; in pymain_parse_cmdline_impl() 1479 cmdline->dont_write_bytecode = Py_DontWriteBytecodeFlag; in cmdline_get_global_config() 1515 Py_DontWriteBytecodeFlag = cmdline->dont_write_bytecode; in cmdline_set_global_config() 1811 get_env_flag(&cmdline->dont_write_bytecode, "PYTHONDONTWRITEBYTECODE"); in cmdline_get_env_flags()
|
/external/python/cpython2/Lib/distutils/ |
D | util.py | 362 if sys.dont_write_bytecode:
|
/external/python/cpython3/Lib/distutils/ |
D | util.py | 349 if sys.dont_write_bytecode:
|
/external/python/cpython3/Lib/importlib/ |
D | _bootstrap_external.py | 862 if (not sys.dont_write_bytecode and bytecode_path is not None and
|
12