Searched refs:_ast (Results 1 – 15 of 15) sorted by relevance
/third_party/rust/crates/regex/regex-syntax/src/ast/ |
D | visitor.rs | 38 fn visit_pre(&mut self, _ast: &Ast) -> Result<(), Self::Err> { in visit_pre() 44 fn visit_post(&mut self, _ast: &Ast) -> Result<(), Self::Err> { in visit_post() 59 _ast: &ast::ClassSetItem, in visit_class_set_item_pre() 69 _ast: &ast::ClassSetItem, in visit_class_set_item_post() 79 _ast: &ast::ClassSetBinaryOp, in visit_class_set_binary_op_pre() 89 _ast: &ast::ClassSetBinaryOp, in visit_class_set_binary_op_post() 98 _ast: &ast::ClassSetBinaryOp, in visit_class_set_binary_op_in()
|
D | print.rs | 175 fn fmt_group_post(&mut self, _ast: &ast::Group) -> fmt::Result { in fmt_group_post() 308 _ast: &ast::ClassBracketed, in fmt_class_bracketed_post()
|
D | parse.rs | 2272 _ast: &ast::ClassSetBinaryOp, in visit_class_set_binary_op_post()
|
/third_party/python/Lib/test/ |
D | test_compile.py | 6 import _ast 455 ast = compile(code, '%s2' % fname, 'exec', _ast.PyCF_ONLY_AST) 456 self.assertTrue(type(ast) == _ast.Module) 463 co1 = compile('print(1)', '<string>', 'exec', _ast.PyCF_ONLY_AST) 467 self.assertRaises(TypeError, compile, _ast.If(), '<ast>', 'exec') 470 ast = _ast.Module() 471 ast.body = [_ast.BoolOp()]
|
D | test_ast.py | 2189 import _ast as ast1 2192 import _ast as ast2 2221 import _ast 2222 self.assertIs(_ast, lazy_mod)
|
D | test_sys.py | 1496 import _ast 1497 check(_ast.AST(), size('P'))
|
/third_party/python/Lib/dbm/ |
D | dumb.py | 24 import ast as _ast namespace 105 key, pos_and_siz_pair = _ast.literal_eval(line)
|
/third_party/python/Modules/ |
D | config.c.in | 45 {"_ast", PyInit__ast},
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a1.rst | 272 The ``_ast`` module uses again a global state. Using a module state per 275 import, whereas Python expected that ``import _ast`` always return a fully 276 initialized ``_ast`` module. 1657 Fix a crash in the ``_ast`` module: it can no longer be loaded more than
|
D | 3.9.0a5.rst | 375 "_ast". Added docstrings for dummy AST node classes and deprecated
|
/third_party/python/Doc/library/ |
D | ast.rst | 48 :ref:`below <abstract-grammar>`. They are defined in the :mod:`_ast` C 2157 .. _ast-compiler-flags: 2185 .. _ast-cli:
|
/third_party/python/Lib/ |
D | ast.py | 28 from _ast import *
|
/third_party/python/Doc/whatsnew/ |
D | 2.5.rst | 2105 :func:`compile` built-in and specifying ``_ast.PyCF_ONLY_AST`` as the value of 2108 from _ast import PyCF_ONLY_AST
|
D | 3.2.rst | 1510 ValueError: malformed node or string: <_ast.Call object at 0x101739a10>
|
/third_party/python/Misc/ |
D | HISTORY | 17327 - Removed the compiler package. Use of the _ast module and (an 18585 to Python code; an _ast module was added.
|