a python riddle – figure out what each line does without running the code. Bonus points for being able to clearly explain what happens, and why.
test.py:
import test
class Test:
pass
t = Test()
print "test.Test: " + str(isinstance(t, test.Test))
print "Test: " + str(isinstance(t, Test))
[More programming riddles]