def do_stuff():
    print 'Stuff done'
    
'''
a) comments
'''
try:
    do_stuff()

# b) comments
except Error:
    do_stuff()
