1 def good(t): 2 a, b, c = t 3 4 def bad(t): 5 a = t.__get_single_item_unchecked__(0) 6 7 t = 1, 2, 3 8 good(t) 9 bad(t)