# File: repr-example-1.py # note: the next line overrides the built-in 'repr' function # for this script from repr import repr # an annoyingly recursive data structure data = ( "X" * 100000, ) data = [data] data.append(data) print repr(data)