"""ast~~~The `ast` module helps Python applications to process trees of the Pythonabstract syntax grammar. The abstract syntax itself might change witheach Python release; this module helps to find out programmatically whatthe current grammar looks like and allows modifications of it.An abstract syntax tree can be generated by passing `ast.PyCF_ONLY_AST` asa flag to the `compile()` builtin function or by using the `parse()`function from this module. The result will be a tree of objects whoseclasses all inherit from `ast.AST`.A modified abstract syntax tree can be compiled into a Python code objectusing the built-in `compile()` function.Additionally various helper functions are provided that make working withthe trees simpler. The main intention of the helper functions and thismodule in general is to provide an easy to use interface for librariesthat work tightly with the python syntax (template engines for example).:copyright: Copyright 2008 by Armin Ronacher.:license: Python License."""from _ast import *def parse(source, filename='<unknown>', mode='exec'):"""Parse the source into an AST node.Equivalent to compile(source, filename, mode, PyCF_ONLY_AST)."""return compile(source, filename, mode, PyCF_ONLY_AST)def literal_eval(node_or_string):"""Safely evaluate an expression node or a string containing a Pythonexpression. The string or node provided may only consist of the followingPython literal structures: strings, bytes, numbers, tuples, lists, dicts,sets, booleans, and None."""if isinstance(node_or_string, str):node_or_string = parse(node_or_string, mode='eval')if isinstance(node_or_string, Expression):node_or_string = node_or_string.bodydef _convert_num(node):if isinstance(node, Constant):if isinstance(node.value, (int, float, complex)):return node.valueelif isinstance(node, Num):return node.nraise ValueError('malformed node or string: ' + repr(node))def _convert_signed_num(node):if isinstance(node, UnaryOp) and isinstance(node.op, (UAdd, USub)):operand = _convert_num(node.operand)if isinstance(node.op, UAdd):return + operandelse:return - operandreturn _convert_num(node)def _convert(node):if isinstance(node, Constant):return node.valueelif isinstance(node, (Str, Bytes)):return node.selif isinstance(node, Num):return node.nelif isinstance(node, Tuple):return tuple(map(_convert, node.elts))elif isinstance(node, List):return list(map(_convert, node.elts))elif isinstance(node, Set):return set(map(_convert, node.elts))elif isinstance(node, Dict):return dict(zip(map(_convert, node.keys),map(_convert, node.values)))elif isinstance(node, NameConstant):return node.valueelif isinstance(node, BinOp) and isinstance(node.op, (Add, Sub)):left = _convert_signed_num(node.left)right = _convert_num(node.right)if isinstance(left, (int, float)) and isinstance(right, complex):if isinstance(node.op, Add):return left + rightelse:return left - rightreturn _convert_signed_num(node)return _convert(node_or_string)def dump(node, annotate_fields=True, include_attributes=False):"""Return a formatted dump of the tree in *node*. This is mainly useful fordebugging purposes. The returned string will show the names and the valuesfor fields. This makes the code impossible to evaluate, so if evaluation iswanted *annotate_fields* must be set to False. Attributes such as linenumbers and column offsets are not dumped by default. If this is wanted,*include_attributes* can be set to True."""def _format(node):if isinstance(node, AST):fields = [(a, _format(b)) for a, b in iter_fields(node)]rv = '%s(%s' % (node.__class__.__name__, ', '.join(('%s=%s' % field for field in fields)if annotate_fields else(b for a, b in fields)))if include_attributes and node._attributes:rv += fields and ', ' or ' 'rv += ', '.join('%s=%s' % (a, _format(getattr(node, a)))for a in node._attributes)return rv + ')'elif isinstance(node, list):return '[%s]' % ', '.join(_format(x) for x in node)return repr(node)if not isinstance(node, AST):raise TypeError('expected AST, got %r' % node.__class__.__name__)return _format(node)def copy_location(new_node, old_node):"""Copy source location (`lineno` and `col_offset` attributes) from*old_node* to *new_node* if possible, and return *new_node*."""for attr in 'lineno', 'col_offset':if attr in old_node._attributes and attr in new_node._attributes \and hasattr(old_node, attr):setattr(new_node, attr, getattr(old_node, attr))return new_nodedef fix_missing_locations(node):"""When you compile a node tree with compile(), the compiler expects lineno andcol_offset attributes for every node that supports them. This is rathertedious to fill in for generated nodes, so this helper adds these attributesrecursively where not already set, by setting them to the values of theparent node. It works recursively starting at *node*."""def _fix(node, lineno, col_offset):if 'lineno' in node._attributes:if not hasattr(node, 'lineno'):node.lineno = linenoelse:lineno = node.linenoif 'col_offset' in node._attributes:if not hasattr(node, 'col_offset'):node.col_offset = col_offsetelse:col_offset = node.col_offsetfor child in iter_child_nodes(node):_fix(child, lineno, col_offset)_fix(node, 1, 0)return nodedef increment_lineno(node, n=1):"""Increment the line number of each node in the tree starting at *node* by *n*.This is useful to "move code" to a different location in a file."""for child in walk(node):if 'lineno' in child._attributes:child.lineno = getattr(child, 'lineno', 0) + nreturn nodedef iter_fields(node):"""Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields``that is present on *node*."""for field in node._fields:try:yield field, getattr(node, field)except AttributeError:passdef iter_child_nodes(node):"""Yield all direct child nodes of *node*, that is, all fields that are nodesand all items of fields that are lists of nodes."""for name, field in iter_fields(node):if isinstance(field, AST):yield fieldelif isinstance(field, list):for item in field:if isinstance(item, AST):yield itemdef get_docstring(node, clean=True):"""Return the docstring for the given node or None if no docstring canbe found. If the node provided does not have docstrings a TypeErrorwill be raised.If *clean* is `True`, all tabs are expanded to spaces and any whitespacethat can be uniformly removed from the second line onwards is removed."""if not isinstance(node, (AsyncFunctionDef, FunctionDef, ClassDef, Module)):raise TypeError("%r can't have docstrings" % node.__class__.__name__)if not(node.body and isinstance(node.body[0], Expr)):return Nonenode = node.body[0].valueif isinstance(node, Str):text = node.selif isinstance(node, Constant) and isinstance(node.value, str):text = node.valueelse:return Noneif clean:import inspecttext = inspect.cleandoc(text)return textdef walk(node):"""Recursively yield all descendant nodes in the tree starting at *node*(including *node* itself), in no specified order. This is useful if youonly want to modify nodes in place and don't care about the context."""from collections import dequetodo = deque([node])while todo:node = todo.popleft()todo.extend(iter_child_nodes(node))yield nodeclass NodeVisitor(object):"""A node visitor base class that walks the abstract syntax tree and calls avisitor function for every node found. This function may return a valuewhich is forwarded by the `visit` method.This class is meant to be subclassed, with the subclass adding visitormethods.Per default the visitor functions for the nodes are ``'visit_'`` +class name of the node. So a `TryFinally` node visit function wouldbe `visit_TryFinally`. This behavior can be changed by overridingthe `visit` method. If no visitor function exists for a node(return value `None`) the `generic_visit` visitor is used instead.Don't use the `NodeVisitor` if you want to apply changes to nodes duringtraversing. For this a special visitor exists (`NodeTransformer`) thatallows modifications."""def visit(self, node):"""Visit a node."""method = 'visit_' + node.__class__.__name__visitor = getattr(self, method, self.generic_visit)return visitor(node)def generic_visit(self, node):"""Called if no explicit visitor function exists for a node."""for field, value in iter_fields(node):if isinstance(value, list):for item in value:if isinstance(item, AST):self.visit(item)elif isinstance(value, AST):self.visit(value)class NodeTransformer(NodeVisitor):"""A :class:`NodeVisitor` subclass that walks the abstract syntax tree andallows modification of nodes.The `NodeTransformer` will walk the AST and use the return value of thevisitor methods to replace or remove the old node. If the return value ofthe visitor method is ``None``, the node will be removed from its location,otherwise it is replaced with the return value. The return value may be theoriginal node in which case no replacement takes place.Here is an example transformer that rewrites all occurrences of name lookups(``foo``) to ``data['foo']``::class RewriteName(NodeTransformer):def visit_Name(self, node):return copy_location(Subscript(value=Name(id='data', ctx=Load()),slice=Index(value=Str(s=node.id)),ctx=node.ctx), node)Keep in mind that if the node you're operating on has child nodes you musteither transform the child nodes yourself or call the :meth:`generic_visit`method for the node first.For nodes that were part of a collection of statements (that applies to allstatement nodes), the visitor may also return a list of nodes rather thanjust a single node.Usually you use the transformer like this::node = YourTransformer().visit(node)"""def generic_visit(self, node):for field, old_value in iter_fields(node):if isinstance(old_value, list):new_values = []for value in old_value:if isinstance(value, AST):value = self.visit(value)if value is None:continueelif not isinstance(value, AST):new_values.extend(value)continuenew_values.append(value)old_value[:] = new_valueselif isinstance(old_value, AST):new_node = self.visit(old_value)if new_node is None:delattr(node, field)else:setattr(node, field, new_node)return node
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。