def visit_sequence(self, t):
self(t.elts)
# XXX make sure there are no stars in elts
if isinstance(t.ctx, ast.Load): pass
elif isinstance(t.ctx, ast.Store): pass
else: assert False, "Only loads and stores are supported: %r" % (t,)
评论列表
文章目录