Fix set literals not being visited in symtable creation.
diff --git a/Python/symtable.c b/Python/symtable.c
index bf15960..64eeb53 100644
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -1147,6 +1147,9 @@
 		VISIT_SEQ(st, expr, e->v.Dict.keys);
 		VISIT_SEQ(st, expr, e->v.Dict.values);
 		break;
+	case Set_kind:
+		VISIT_SEQ(st, expr, e->v.Set.elts);
+		break;
         case ListComp_kind:
 		if (!symtable_new_tmpname(st))
 			return 0;