同步操作将从 OpenHarmony-SIG/python 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
"""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', *,type_comments=False, feature_version=None):"""Parse the source into an AST node.Equivalent to compile(source, filename, mode, PyCF_ONLY_AST).Pass type_comments=True to get back type comments where the syntax allows."""flags = PyCF_ONLY_ASTif type_comments:flags |= PyCF_TYPE_COMMENTSif isinstance(feature_version, tuple):major, minor = feature_version # Should be a 2-tuple.assert major == 3feature_version = minorelif feature_version is None:feature_version = -1# Else it should be an int giving the minor version for 3.x.return compile(source, filename, mode, flags,_feature_version=feature_version)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 _raise_malformed_node(node):raise ValueError(f'malformed node or string: {node!r}')def _convert_num(node):if not isinstance(node, Constant) or type(node.value) not in (int, float, complex):_raise_malformed_node(node)return node.valuedef _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, 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):if len(node.keys) != len(node.values):_raise_malformed_node(node)return dict(zip(map(_convert, node.keys),map(_convert, node.values)))elif 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. If annotate_fields is true (by default),the returned string will show the names and the values for fields.If annotate_fields is false, the result string will be more compact byomitting unambiguous field names. 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):args = []keywords = annotate_fieldsfor field in node._fields:try:value = getattr(node, field)except AttributeError:keywords = Trueelse:if keywords:args.append('%s=%s' % (field, _format(value)))else:args.append(_format(value))if include_attributes and node._attributes:for a in node._attributes:try:args.append('%s=%s' % (a, _format(getattr(node, a))))except AttributeError:passreturn '%s(%s)' % (node.__class__.__name__, ', '.join(args))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`, `col_offset`, `end_lineno`, and `end_col_offset`attributes) from *old_node* to *new_node* if possible, and return *new_node*."""for attr in 'lineno', 'col_offset', 'end_lineno', 'end_col_offset':if attr in old_node._attributes and attr in new_node._attributes:value = getattr(old_node, attr, None)# end_lineno and end_col_offset are optional attributes, and they# should be copied whether the value is None or not.if value is not None or (hasattr(old_node, attr) and attr.startswith("end_")):setattr(new_node, attr, value)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, end_lineno, end_col_offset):if 'lineno' in node._attributes:if not hasattr(node, 'lineno'):node.lineno = linenoelse:lineno = node.linenoif 'end_lineno' in node._attributes:if not hasattr(node, 'end_lineno'):node.end_lineno = end_linenoelse:end_lineno = node.end_linenoif 'col_offset' in node._attributes:if not hasattr(node, 'col_offset'):node.col_offset = col_offsetelse:col_offset = node.col_offsetif 'end_col_offset' in node._attributes:if not hasattr(node, 'end_col_offset'):node.end_col_offset = end_col_offsetelse:end_col_offset = node.end_col_offsetfor child in iter_child_nodes(node):_fix(child, lineno, col_offset, end_lineno, end_col_offset)_fix(node, 1, 0, 1, 0)return nodedef increment_lineno(node, n=1):"""Increment the line number and end line number of each node in the treestarting at *node* by *n*. This is useful to "move code" to a differentlocation in a file."""for child in walk(node):if 'lineno' in child._attributes:child.lineno = getattr(child, 'lineno', 0) + nif ("end_lineno" in child._attributesand (end_lineno := getattr(child, "end_lineno", 0)) is not None):child.end_lineno = end_lineno + 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 _splitlines_no_ff(source):"""Split a string into lines ignoring form feed and other chars.This mimics how the Python parser splits source code."""idx = 0lines = []next_line = ''while idx < len(source):c = source[idx]next_line += cidx += 1# Keep \r\n togetherif c == '\r' and idx < len(source) and source[idx] == '\n':next_line += '\n'idx += 1if c in '\r\n':lines.append(next_line)next_line = ''if next_line:lines.append(next_line)return linesdef _pad_whitespace(source):r"""Replace all chars except '\f\t' in a line with spaces."""result = ''for c in source:if c in '\f\t':result += celse:result += ' 'return resultdef get_source_segment(source, node, *, padded=False):"""Get source code segment of the *source* that generated *node*.If some location information (`lineno`, `end_lineno`, `col_offset`,or `end_col_offset`) is missing, return None.If *padded* is `True`, the first line of a multi-line statement willbe padded with spaces to match its original position."""try:lineno = node.lineno - 1end_lineno = node.end_lineno - 1col_offset = node.col_offsetend_col_offset = node.end_col_offsetexcept AttributeError:return Nonelines = _splitlines_no_ff(source)if end_lineno == lineno:return lines[lineno].encode()[col_offset:end_col_offset].decode()if padded:padding = _pad_whitespace(lines[lineno].encode()[:col_offset].decode())else:padding = ''first = padding + lines[lineno].encode()[col_offset:].decode()last = lines[end_lineno].encode()[:end_col_offset].decode()lines = lines[lineno+1:end_lineno]lines.insert(0, first)lines.append(last)return ''.join(lines)def 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)def visit_Constant(self, node):value = node.valuetype_name = _const_node_type_names.get(type(value))if type_name is None:for cls, name in _const_node_type_names.items():if isinstance(value, cls):type_name = namebreakif type_name is not None:method = 'visit_' + type_nametry:visitor = getattr(self, method)except AttributeError:passelse:import warningswarnings.warn(f"{method} is deprecated; add visit_Constant",PendingDeprecationWarning, 2)return visitor(node)return self.generic_visit(node)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 Subscript(value=Name(id='data', ctx=Load()),slice=Index(value=Str(s=node.id)),ctx=node.ctx)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# The following code is for backward compatibility.# It will be removed in future.def _getter(self):return self.valuedef _setter(self, value):self.value = valueConstant.n = property(_getter, _setter)Constant.s = property(_getter, _setter)class _ABC(type):def __instancecheck__(cls, inst):if not isinstance(inst, Constant):return Falseif cls in _const_types:try:value = inst.valueexcept AttributeError:return Falseelse:return (isinstance(value, _const_types[cls]) andnot isinstance(value, _const_types_not.get(cls, ())))return type.__instancecheck__(cls, inst)def _new(cls, *args, **kwargs):for key in kwargs:if key not in cls._fields:# arbitrary keyword arguments are acceptedcontinuepos = cls._fields.index(key)if pos < len(args):raise TypeError(f"{cls.__name__} got multiple values for argument {key!r}")if cls in _const_types:return Constant(*args, **kwargs)return Constant.__new__(cls, *args, **kwargs)class Num(Constant, metaclass=_ABC):_fields = ('n',)__new__ = _newclass Str(Constant, metaclass=_ABC):_fields = ('s',)__new__ = _newclass Bytes(Constant, metaclass=_ABC):_fields = ('s',)__new__ = _newclass NameConstant(Constant, metaclass=_ABC):__new__ = _newclass Ellipsis(Constant, metaclass=_ABC):_fields = ()def __new__(cls, *args, **kwargs):if cls is Ellipsis:return Constant(..., *args, **kwargs)return Constant.__new__(cls, *args, **kwargs)_const_types = {Num: (int, float, complex),Str: (str,),Bytes: (bytes,),NameConstant: (type(None), bool),Ellipsis: (type(...),),}_const_types_not = {Num: (bool,),}_const_node_type_names = {bool: 'NameConstant', # should be before inttype(None): 'NameConstant',int: 'Num',float: 'Num',complex: 'Num',str: 'Str',bytes: 'Bytes',type(...): 'Ellipsis',}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。