Home
last modified time | relevance | path

Searched refs:dont_inherit (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Python/clinic/
Dbltinmodule.c.h170 const char *mode, int flags, int dont_inherit,
185 int dont_inherit = 0; in builtin_compile() local
223 dont_inherit = _PyLong_AsInt(args[4]); in builtin_compile()
224 if (dont_inherit == -1 && PyErr_Occurred()) { in builtin_compile()
249 …return_value = builtin_compile_impl(module, source, filename, mode, flags, dont_inherit, optimize,… in builtin_compile()
/third_party/python/Lib/test/
Dtest_eof.py42 compile('"\\xhh" \\', '<string>', 'exec', dont_inherit=True)
Dtest_call.py529 x = IntWithDict(dont_inherit=IntWithDict())
Dtest_builtin.py331 compile(dont_inherit=False, filename='tmp', source='0', mode='eval')
332 compile('pass', '?', dont_inherit=True, mode='exec')
Dtest_zipfile.py2991 dont_inherit=True,
/third_party/python/Lib/importlib/
Dabc.py211 return compile(data, path, 'exec', dont_inherit=True)
D_bootstrap_external.py948 dont_inherit=True, optimize=_optimize)
1293 return compile('', '<string>', 'exec', dont_inherit=True)
/third_party/python/Lib/
Dzipimport.py689 return compile(source, pathname, 'exec', dont_inherit=True)
/third_party/python/Python/
Dbltinmodule.c749 const char *mode, int flags, int dont_inherit, in builtin_compile_impl() argument
781 if (!dont_inherit) { in builtin_compile_impl()
/third_party/python/Lib/test/test_importlib/
Dtest_abc.py741 dont_inherit=True)
/third_party/python/Doc/library/
Dfunctions.rst274 .. function:: compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)
291 The optional arguments *flags* and *dont_inherit* control which
296 argument is given and *dont_inherit* is not (or is zero) then the compiler
298 in addition to those that would be used anyway. If *dont_inherit* is a
/third_party/python/Doc/whatsnew/
D3.4.rst986 is equivalent to ``compile(data, path, 'exec', dont_inherit=True)``.