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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_compile.py 502 ast = compile(code, '%s2' % fname, 'exec', _ast.PyCF_ONLY_AST)
510 co1 = compile('print 1', '<string>', 'exec', _ast.PyCF_ONLY_AST)
test_ast.py 219 ast_tree = compile(i, "?", kind, ast.PyCF_ONLY_AST)
390 b = compile('foo(1 + 1)', '<unknown>', 'exec', ast.PyCF_ONLY_AST)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_compile.py 502 ast = compile(code, '%s2' % fname, 'exec', _ast.PyCF_ONLY_AST)
510 co1 = compile('print 1', '<string>', 'exec', _ast.PyCF_ONLY_AST)
test_ast.py 219 ast_tree = compile(i, "?", kind, ast.PyCF_ONLY_AST)
390 b = compile('foo(1 + 1)', '<unknown>', 'exec', ast.PyCF_ONLY_AST)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pythonrun.h 16 #define PyCF_ONLY_AST 0x0400
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pythonrun.h 16 #define PyCF_ONLY_AST 0x0400
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ast.py 11 An abstract syntax tree can be generated by passing `ast.PyCF_ONLY_AST` as
35 Equivalent to compile(source, filename, mode, PyCF_ONLY_AST).
37 return compile(source, filename, mode, PyCF_ONLY_AST)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ast.py 11 An abstract syntax tree can be generated by passing `ast.PyCF_ONLY_AST` as
35 Equivalent to compile(source, filename, mode, PyCF_ONLY_AST).
37 return compile(source, filename, mode, PyCF_ONLY_AST)

Completed in 186 milliseconds