| Server IP : 217.160.0.212 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/python3/dist-packages/pythran/transformations/ |
Upload File : |
""" This submodule contains all the transformations passes offered in Pythran. This file is just for convenience and turns the import from import transformations.xxxxx.xxxxx into import transformations.xxxxx """ from .expand_builtins import ExpandBuiltins from .expand_globals import ExpandGlobals from .expand_import_all import ExpandImportAll from .expand_imports import ExpandImports from .extract_doc_strings import ExtractDocStrings from .false_polymorphism import FalsePolymorphism from .handle_import import HandleImport from .normalize_compare import NormalizeCompare from .normalize_exception import NormalizeException from .normalize_ifelse import NormalizeIfElse from .normalize_is_none import NormalizeIsNone from .normalize_method_calls import NormalizeMethodCalls from .normalize_return import NormalizeReturn from .normalize_static_if import NormalizeStaticIf, SplitStaticExpression from .normalize_tuples import NormalizeTuples from .remove_comprehension import RemoveComprehension from .remove_lambdas import RemoveLambdas from .remove_nested_functions import RemoveNestedFunctions from .unshadow_parameters import UnshadowParameters from .remove_named_arguments import RemoveNamedArguments from .remove_fstrings import RemoveFStrings