def exit(save_state=True): """Attempts to tidy up the graphics, and then save the app state. Finally it calls sys.exit(), since sys is already imported """ try: graphics.exit() except: pass if save_state: gs.save_state() sys.exit()
def exit(): graphics.exit()
def exit(): """Attempts to tidy up the graphics. Finally it calls sys.exit(), since sys is already imported """ graphics.exit() sys.exit()
def exit(): graphics.exit() print 'Come back soon!'