comparison python/abstract.py @ 189:fe8befc5bdfc

add another print just for fun
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 28 Dec 2011 15:26:30 -0800
parents 5b82653ccda3
children
comparison
equal deleted inserted replaced
188:5b82653ccda3 189:fe8befc5bdfc
31 print e 31 print e
32 try: 32 try:
33 a.bar() 33 a.bar()
34 except NotImplementedError, e: 34 except NotImplementedError, e:
35 print e 35 print e
36 c.foo(1)
36 a.foo(1) 37 a.foo(1)
37 38
38 39