403Webshell
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 :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /lib/python3/dist-packages/pythran/transformations/normalize_exception.py
""" NormalizeException simplifies try blocks. """

from pythran.passmanager import Transformation

import gast as ast


class NormalizeException(Transformation):
    '''
    Transform else statement in try except block in nested try except.

    >>> import gast as ast
    >>> from pythran import passmanager, backend
    >>> node = ast.parse("try:print('t')\\nexcept: print('x')\\n\
else: print('e')")
    >>> pm = passmanager.PassManager("test")
    >>> _, node = pm.apply(NormalizeException, node)
    >>> print(pm.dump(backend.Python, node))
    try:
        print('t')
        try:
            print('e')
        except:
            pass
    except:
        print('x')
    '''
    # FIXME : The transformation is incorrect. Else statement should propagate
    # exception
    def visit_Try(self, node):
        if node.orelse:
            node.body.append(
                ast.Try(
                    node.orelse,
                    [ast.ExceptHandler(None, None, [ast.Pass()])],
                    [], []
                    )
                )
            node.orelse = []
            self.update = True
        if node.finalbody:
            node.body.extend(node.finalbody)
            node.finalbody.append(ast.Raise(None, None))
            self.update = True
            node = ast.Try(
                node.body,
                [ast.ExceptHandler(None, None, node.finalbody)],
                [], [])
            node.finalbody = []
        return node

Youez - 2016 - github.com/yon3zu
LinuXploit