HomeSort by relevance Sort by last modified time
    Searched refs:dont_inherit (Results 1 - 21 of 21) sorted by null

  /external/python/cpython3/Python/clinic/
bltinmodule.c.h 134 " dont_inherit=False, optimize=-1)\n"
145 "The dont_inherit argument, if true, stops the compilation inheriting\n"
155 const char *mode, int flags, int dont_inherit,
162 static const char * const _keywords[] = {"source", "filename", "mode", "flags", "dont_inherit", "optimize", NULL};
168 int dont_inherit = 0; local
172 &source, PyUnicode_FSDecoder, &filename, &mode, &flags, &dont_inherit, &optimize)) {
175 return_value = builtin_compile_impl(module, source, filename, mode, flags, dont_inherit, optimize);
  /external/python/cpython3/Lib/importlib/
abc.py 231 return compile(data, path, 'exec', dont_inherit=True)
_bootstrap_external.py 741 dont_inherit=True, optimize=_optimize)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
bltinmodule.c 473 int dont_inherit = 0; local
480 "dont_inherit", NULL};
485 &supplied_flags, &dont_inherit))
499 if (!dont_inherit) {
566 "compile(source, filename, mode[, flags[, dont_inherit]]) -> code object\n\
575 The dont_inherit argument, if non-zero, stops the compilation inheriting\n\
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
bltinmodule.c 467 int dont_inherit = 0; local
474 "dont_inherit", NULL};
479 &supplied_flags, &dont_inherit))
493 if (!dont_inherit) {
558 "compile(source, filename, mode[, flags[, dont_inherit]]) -> code object\n\
567 The dont_inherit argument, if non-zero, stops the compilation inheriting\n\
    [all...]
  /external/python/cpython2/Python/
bltinmodule.c 473 int dont_inherit = 0; local
480 "dont_inherit", NULL};
485 &supplied_flags, &dont_inherit))
499 if (!dont_inherit) {
577 "compile(source, filename, mode[, flags[, dont_inherit]]) -> code object\n\
586 The dont_inherit argument, if non-zero, stops the compilation inheriting\n\
    [all...]
  /external/python/cpython3/Python/
bltinmodule.c 674 dont_inherit: int(c_default="0") = False
685 The dont_inherit argument, if true, stops the compilation inheriting
693 const char *mode, int flags, int dont_inherit,
722 if (!dont_inherit) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pycodegen.py 51 def compile(source, filename, mode, flags=None, dont_inherit=None):
53 if flags is not None or dont_inherit is not None:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_builtin.py 245 compile(dont_inherit=0, filename='tmp', source='0', mode='eval')
246 compile('pass', '?', dont_inherit=1, mode='exec')
    [all...]
  /external/python/cpython2/Lib/compiler/
pycodegen.py 51 def compile(source, filename, mode, flags=None, dont_inherit=None):
53 if flags is not None or dont_inherit is not None:
    [all...]
  /external/python/cpython2/Lib/test/
test_builtin.py 247 compile(dont_inherit=0, filename='tmp', source='0', mode='eval')
248 compile('pass', '?', dont_inherit=1, mode='exec')
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
pycodegen.py 51 def compile(source, filename, mode, flags=None, dont_inherit=None):
53 if flags is not None or dont_inherit is not None:
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_builtin.py 247 compile(dont_inherit=0, filename='tmp', source='0', mode='eval')
248 compile('pass', '?', dont_inherit=1, mode='exec')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
pycodegen.py 51 def compile(source, filename, mode, flags=None, dont_inherit=None):
53 if flags is not None or dont_inherit is not None:
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_builtin.py 247 compile(dont_inherit=0, filename='tmp', source='0', mode='eval')
248 compile('pass', '?', dont_inherit=1, mode='exec')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 51 def compile(source, filename, mode, flags=None, dont_inherit=None):
53 if flags is not None or dont_inherit is not None:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_builtin.py 247 compile(dont_inherit=0, filename='tmp', source='0', mode='eval')
248 compile('pass', '?', dont_inherit=1, mode='exec')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 51 def compile(source, filename, mode, flags=None, dont_inherit=None):
53 if flags is not None or dont_inherit is not None:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_builtin.py 247 compile(dont_inherit=0, filename='tmp', source='0', mode='eval')
248 compile('pass', '?', dont_inherit=1, mode='exec')
    [all...]
  /external/python/cpython3/Lib/test/test_importlib/
test_abc.py 672 dont_inherit=True)
  /external/python/cpython2/Lib/idlelib/
PyShell.py 654 code = compile(source, filename, "exec", dont_inherit=True)
    [all...]

Completed in 1034 milliseconds