/opt/alt/python312/lib64/python3.12/lib2to3/fixes
# Copyright 2006 Google, Inc. All Rights Reserved. # Licensed to PSF under a Contributor Agreement. """Fixer for execfile. This converts usages of the execfile function into calls to the built-in exec() function. """ from .. import fixer_base from ..fixer_util import (Comma, Name, Call, LParen, RParen, Dot, Node, ArgList, String, syms) class FixExecfile(fixer_base.BaseFix): BM_compatible = True PATTERN = """ power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > > | power< 'execfile' trailer< '(' filename=any ')' > > """ def transform(self, node, results): assert results filename = results["filename"] globals = results.get("globals") locals = results.get("locals") # Copy over the prefix from the right parentheses end of the execfile # call. execfile_paren = node.children[-1].children[-1].clone() # Construct open().read(). open_args = ArgList([filename.clone(), Comma(), String('"rb"', ' ')], rparen=execfile_paren) open_call = Node(syms.power, [Name("open"), open_args]) read = [Node(syms.trailer, [Dot(), Name('read')]), Node(syms.trailer, [LParen(), RParen()])] open_expr = [open_call] + read # Wrap the open call in a compile call. This is so the filename will be # preserved in the execed code. filename_arg = filename.clone() filename_arg.prefix = " " exec_str = String("'exec'", " ") compile_args = open_expr + [Comma(), filename_arg, Comma(), exec_str] compile_call = Call(Name("compile"), compile_args, "") # Finally, replace the execfile call with an exec call. args = [compile_call] if globals is not None: args.extend([Comma(), globals.clone()]) if locals is not None: args.extend([Comma(), locals.clone()]) return Call(Name("exec"), args, prefix=node.prefix)
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
fix_apply.py
Edit
fix_asserts.py
Edit
fix_basestring.py
Edit
fix_buffer.py
Edit
fix_dict.py
Edit
fix_except.py
Edit
fix_exec.py
Edit
fix_execfile.py
Edit
fix_exitfunc.py
Edit
fix_filter.py
Edit
fix_funcattrs.py
Edit
fix_future.py
Edit
fix_getcwdu.py
Edit
fix_has_key.py
Edit
fix_idioms.py
Edit
fix_import.py
Edit
fix_imports.py
Edit
fix_imports2.py
Edit
fix_input.py
Edit
fix_intern.py
Edit
fix_isinstance.py
Edit
fix_itertools.py
Edit
fix_itertools_imports.py
Edit
fix_long.py
Edit
fix_map.py
Edit
fix_metaclass.py
Edit
fix_methodattrs.py
Edit
fix_ne.py
Edit
fix_next.py
Edit
fix_nonzero.py
Edit
fix_numliterals.py
Edit
fix_operator.py
Edit
fix_paren.py
Edit
fix_print.py
Edit
fix_raise.py
Edit
fix_raw_input.py
Edit
fix_reduce.py
Edit
fix_reload.py
Edit
fix_renames.py
Edit
fix_repr.py
Edit
fix_set_literal.py
Edit
fix_standarderror.py
Edit
fix_sys_exc.py
Edit
fix_throw.py
Edit
fix_tuple_params.py
Edit
fix_types.py
Edit
fix_unicode.py
Edit
fix_urllib.py
Edit
fix_ws_comma.py
Edit
fix_xrange.py
Edit
fix_xreadlines.py
Edit
fix_zip.py
Edit