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

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

项目:hostapd-mana    作者:adde88    | 项目源码 | 文件源码
def with_stmt(self, nodelist):
        return self.com_with(nodelist)
项目:hostapd-mana    作者:adde88    | 项目源码 | 文件源码
def com_with(self, nodelist):
        # with_stmt: 'with' with_item (',' with_item)* ':' suite
        body = self.com_node(nodelist[-1])
        for i in range(len(nodelist) - 3, 0, -2):
            ret = self.com_with_item(nodelist[i], body, nodelist[0][2])
            if i == 1:
                return ret
            body = ret
项目:oil    作者:oilshell    | 项目源码 | 文件源码
def with_stmt(self, nodelist):
        return self.com_with(nodelist)
项目:oil    作者:oilshell    | 项目源码 | 文件源码
def com_with(self, nodelist):
        # with_stmt: 'with' with_item (',' with_item)* ':' suite
        body = self.com_node(nodelist[-1])
        for i in range(len(nodelist) - 3, 0, -2):
            ret = self.com_with_item(nodelist[i], body, nodelist[0][2])
            if i == 1:
                return ret
            body = ret
项目:python2-tracer    作者:extremecoders-re    | 项目源码 | 文件源码
def with_stmt(self, nodelist):
        return self.com_with(nodelist)
项目:python2-tracer    作者:extremecoders-re    | 项目源码 | 文件源码
def com_with(self, nodelist):
        # with_stmt: 'with' with_item (',' with_item)* ':' suite
        body = self.com_node(nodelist[-1])
        for i in range(len(nodelist) - 3, 0, -2):
            ret = self.com_with_item(nodelist[i], body, nodelist[0][2])
            if i == 1:
                return ret
            body = ret
项目:sslstrip-hsts-openwrt    作者:adde88    | 项目源码 | 文件源码
def with_stmt(self, nodelist):
        return self.com_with(nodelist)
项目:sslstrip-hsts-openwrt    作者:adde88    | 项目源码 | 文件源码
def com_with(self, nodelist):
        # with_stmt: 'with' with_item (',' with_item)* ':' suite
        body = self.com_node(nodelist[-1])
        for i in range(len(nodelist) - 3, 0, -2):
            ret = self.com_with_item(nodelist[i], body, nodelist[0][2])
            if i == 1:
                return ret
            body = ret
项目:pefile.pypy    作者:cloudtracer    | 项目源码 | 文件源码
def with_stmt(self, nodelist):
        return self.com_with(nodelist)
项目:pefile.pypy    作者:cloudtracer    | 项目源码 | 文件源码
def com_with(self, nodelist):
        # with_stmt: 'with' with_item (',' with_item)* ':' suite
        body = self.com_node(nodelist[-1])
        for i in range(len(nodelist) - 3, 0, -2):
            ret = self.com_with_item(nodelist[i], body, nodelist[0][2])
            if i == 1:
                return ret
            body = ret