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

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

项目:hostapd-mana    作者:adde88    | 项目源码 | 文件源码
def and_test(self, nodelist):
        # not_test ('and' not_test)*
        return self.com_binary(And, nodelist)
项目:hostapd-mana    作者:adde88    | 项目源码 | 文件源码
def not_test(self, nodelist):
        # 'not' not_test | comparison
        result = self.com_node(nodelist[-1])
        if len(nodelist) == 2:
            return Not(result, lineno=nodelist[0][2])
        return result
项目:oil    作者:oilshell    | 项目源码 | 文件源码
def and_test(self, nodelist):
        # not_test ('and' not_test)*
        return self.com_binary(And, nodelist)
项目:oil    作者:oilshell    | 项目源码 | 文件源码
def not_test(self, nodelist):
        # 'not' not_test | comparison
        result = self.com_node(nodelist[-1])
        if len(nodelist) == 2:
            return Not(result, lineno=nodelist[0][2])
        return result
项目:python2-tracer    作者:extremecoders-re    | 项目源码 | 文件源码
def and_test(self, nodelist):
        # not_test ('and' not_test)*
        return self.com_binary(And, nodelist)
项目:python2-tracer    作者:extremecoders-re    | 项目源码 | 文件源码
def not_test(self, nodelist):
        # 'not' not_test | comparison
        result = self.com_node(nodelist[-1])
        if len(nodelist) == 2:
            return Not(result, lineno=nodelist[0][2])
        return result
项目:sslstrip-hsts-openwrt    作者:adde88    | 项目源码 | 文件源码
def and_test(self, nodelist):
        # not_test ('and' not_test)*
        return self.com_binary(And, nodelist)
项目:sslstrip-hsts-openwrt    作者:adde88    | 项目源码 | 文件源码
def not_test(self, nodelist):
        # 'not' not_test | comparison
        result = self.com_node(nodelist[-1])
        if len(nodelist) == 2:
            return Not(result, lineno=nodelist[0][2])
        return result
项目:pefile.pypy    作者:cloudtracer    | 项目源码 | 文件源码
def and_test(self, nodelist):
        # not_test ('and' not_test)*
        return self.com_binary(And, nodelist)
项目:pefile.pypy    作者:cloudtracer    | 项目源码 | 文件源码
def not_test(self, nodelist):
        # 'not' not_test | comparison
        result = self.com_node(nodelist[-1])
        if len(nodelist) == 2:
            return Not(result, lineno=nodelist[0][2])
        return result