Searched refs:dont_write_bytecode (Results 1 – 23 of 23) sorted by relevance
/third_party/python/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 | 292 old_dont_write_bytecode = sys.dont_write_bytecode 293 sys.dont_write_bytecode = True 297 sys.dont_write_bytecode = old_dont_write_bytecode
|
D | test_bdist_dumb.py | 89 if not sys.dont_write_bytecode:
|
/third_party/python/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
|
/third_party/python/Lib/test/ |
D | _test_embed_set_config.py | 165 self.assertEqual(sys.flags.dont_write_bytecode, True) 166 self.assertEqual(sys.dont_write_bytecode, True) 169 self.assertEqual(sys.flags.dont_write_bytecode, False) 170 self.assertEqual(sys.dont_write_bytecode, False)
|
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 | 180 if not sys.dont_write_bytecode: 301 @unittest.skipIf(sys.dont_write_bytecode,
|
D | test_cmd_line.py | 574 dont_write_bytecode = int(bool(value))
|
/third_party/python/Lib/test/test_importlib/ |
D | util.py | 309 if sys.dont_write_bytecode: 313 original = sys.dont_write_bytecode 314 sys.dont_write_bytecode = False 318 sys.dont_write_bytecode = original
|
D | test_abc.py | 891 @unittest.skipIf(sys.dont_write_bytecode, "sys.dont_write_bytecode is true") 950 sys.dont_write_bytecode = True 955 sys.dont_write_bytecode = False
|
/third_party/python/Lib/distutils/command/ |
D | install_lib.py | 119 if sys.dont_write_bytecode:
|
D | build_py.py | 375 if sys.dont_write_bytecode:
|
/third_party/python/Lib/distutils/ |
D | util.py | 363 if sys.dont_write_bytecode:
|
/third_party/python/Python/ |
D | initconfig.c | 1660 int dont_write_bytecode = 0; in config_read_env_vars() local 1661 _Py_get_env_flag(use_env, &dont_write_bytecode, "PYTHONDONTWRITEBYTECODE"); in config_read_env_vars() 1662 if (dont_write_bytecode) { in config_read_env_vars()
|
/third_party/python/Lib/importlib/ |
D | _bootstrap_external.py | 1019 if (not sys.dont_write_bytecode and bytecode_path is not None and
|
/third_party/python/Lib/test/test_import/ |
D | __init__.py | 34 sys.dont_write_bytecode,
|
/third_party/python/Doc/tutorial/ |
D | modules.rst | 317 'callstats', 'copyright', 'displayhook', 'dont_write_bytecode', 'exc_info',
|
/third_party/python/Doc/library/ |
D | sys.rst | 308 .. data:: dont_write_bytecode 473 :const:`dont_write_bytecode` :option:`-B`
|
/third_party/python/Doc/c-api/ |
D | init_config.rst | 1158 :data:`sys.dont_write_bytecode` is initialized to the inverted value of
|
/third_party/python/Doc/whatsnew/ |
D | 2.6.rst | 1766 Python programs as the ``sys.dont_write_bytecode`` variable, and 2411 Another new variable, :attr:`dont_write_bytecode`, controls whether Python
|
D | 3.2.rst | 492 optimize=0, dont_write_bytecode=0, no_user_site=0, no_site=0,
|
/third_party/python/Misc/ |
D | HISTORY | 14818 sys.dont_write_bytecode is true. 15392 sys.dont_write_bytecode.
|