我们从Python开源项目中,提取了以下5个代码示例,用于说明如何使用symbol.return_stmt()。
def return_stmt(self, nodelist): # return: [testlist] if len(nodelist) < 2: return Return(Const(None), lineno=nodelist[0][2]) return Return(self.com_node(nodelist[1]), lineno=nodelist[0][2])