DEBSOURCES
Skip Quicknav
sources / jython / 2.5.3-16%2Bdeb9u1 / Lib / test / bugs / pr174.py
123456789
# test for PR#174 -- immutability of tuples target = (1,2,3) lst = [1,2,3] tpl = tuple(lst) lst[0] = 0 if tpl <> target: print 'Tuples are mutable'