14 months ago | Paul Boddie | file changeset files shortlog | Merged changes from the value-replacement branch. | value-replacement-for-wrapper |
paul@845 | 1 | def good(t): |
paul@845 | 2 | a, b, c = t |
paul@845 | 3 | |
paul@845 | 4 | def bad(t): |
paul@845 | 5 | a = t.__get_single_item_unchecked__(0) |
paul@845 | 6 | |
paul@845 | 7 | t = 1, 2, 3 |
paul@845 | 8 | good(t) |
paul@845 | 9 | bad(t) |