Lichen

tests/tuple_unpack_bad.py

1030:189558cc45e1
5 months ago Paul Boddie Merged changes from the value-replacement branch. value-replacement-for-wrapper
     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)