我们从Python开源项目中,提取了以下10个代码示例,用于说明如何使用symbol.not_test()。
def and_test(self, nodelist): # not_test ('and' not_test)* return self.com_binary(And, nodelist)
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