Python symbol 模块,break_stmt() 实例源码

我们从Python开源项目中,提取了以下10个代码示例,用于说明如何使用symbol.break_stmt()

项目:hostapd-mana    作者:adde88    | 项目源码 | 文件源码
def break_stmt(self, nodelist):
        return Break(lineno=nodelist[0][2])
项目:hostapd-mana    作者:adde88    | 项目源码 | 文件源码
def com_node(self, node):
        # Note: compile.c has handling in com_node for del_stmt, pass_stmt,
        #       break_stmt, stmt, small_stmt, flow_stmt, simple_stmt,
        #       and compound_stmt.
        #       We'll just dispatch them.
        return self._dispatch[node[0]](node[1:])
项目:oil    作者:oilshell    | 项目源码 | 文件源码
def break_stmt(self, nodelist):
        return Break(lineno=nodelist[0][2])
项目:oil    作者:oilshell    | 项目源码 | 文件源码
def com_node(self, node):
        # Note: compile.c has handling in com_node for del_stmt, pass_stmt,
        #       break_stmt, stmt, small_stmt, flow_stmt, simple_stmt,
        #       and compound_stmt.
        #       We'll just dispatch them.
        return self._dispatch[node[0]](node[1:])
项目:python2-tracer    作者:extremecoders-re    | 项目源码 | 文件源码
def break_stmt(self, nodelist):
        return Break(lineno=nodelist[0][2])
项目:python2-tracer    作者:extremecoders-re    | 项目源码 | 文件源码
def com_node(self, node):
        # Note: compile.c has handling in com_node for del_stmt, pass_stmt,
        #       break_stmt, stmt, small_stmt, flow_stmt, simple_stmt,
        #       and compound_stmt.
        #       We'll just dispatch them.
        return self._dispatch[node[0]](node[1:])
项目:sslstrip-hsts-openwrt    作者:adde88    | 项目源码 | 文件源码
def break_stmt(self, nodelist):
        return Break(lineno=nodelist[0][2])
项目:sslstrip-hsts-openwrt    作者:adde88    | 项目源码 | 文件源码
def com_node(self, node):
        # Note: compile.c has handling in com_node for del_stmt, pass_stmt,
        #       break_stmt, stmt, small_stmt, flow_stmt, simple_stmt,
        #       and compound_stmt.
        #       We'll just dispatch them.
        return self._dispatch[node[0]](node[1:])
项目:pefile.pypy    作者:cloudtracer    | 项目源码 | 文件源码
def break_stmt(self, nodelist):
        return Break(lineno=nodelist[0][2])
项目:pefile.pypy    作者:cloudtracer    | 项目源码 | 文件源码
def com_node(self, node):
        # Note: compile.c has handling in com_node for del_stmt, pass_stmt,
        #       break_stmt, stmt, small_stmt, flow_stmt, simple_stmt,
        #       and compound_stmt.
        #       We'll just dispatch them.
        return self._dispatch[node[0]](node[1:])