Quine
Aaron Swartz answered my call for fresh quines by providing this one:
Author: Omar Antolin (omar@galois.fciencias.unam.mx)a = ['print "a =", a', 'for s in a: print s']
print "a =", a
for s in a: print s
I don't think it's exactly along the lines of other quines I've seen before, although it has some family resemblances to them. The use of a Python list is very nice.