Searched refs:dont_inherit (Results 1 – 12 of 12) sorted by relevance
/third_party/python/Python/clinic/ |
D | bltinmodule.c.h | 170 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/ |
D | test_eof.py | 42 compile('"\\xhh" \\', '<string>', 'exec', dont_inherit=True)
|
D | test_call.py | 529 x = IntWithDict(dont_inherit=IntWithDict())
|
D | test_builtin.py | 331 compile(dont_inherit=False, filename='tmp', source='0', mode='eval') 332 compile('pass', '?', dont_inherit=True, mode='exec')
|
D | test_zipfile.py | 2991 dont_inherit=True,
|
/third_party/python/Lib/importlib/ |
D | abc.py | 211 return compile(data, path, 'exec', dont_inherit=True)
|
D | _bootstrap_external.py | 948 dont_inherit=True, optimize=_optimize) 1293 return compile('', '<string>', 'exec', dont_inherit=True)
|
/third_party/python/Lib/ |
D | zipimport.py | 689 return compile(source, pathname, 'exec', dont_inherit=True)
|
/third_party/python/Python/ |
D | bltinmodule.c | 749 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/ |
D | test_abc.py | 741 dont_inherit=True)
|
/third_party/python/Doc/library/ |
D | functions.rst | 274 .. 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/ |
D | 3.4.rst | 986 is equivalent to ``compile(data, path, 'exec', dont_inherit=True)``.
|