[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] Gracefully exiting with errors



On Wed, Aug 26, 2015 at 11:38 AM, Bob Irving <bobirv@xxxxxxxxx> wrote:
Is there a way to exit your game gracefully when there are errors? We have found with both IDLE and WingIDE that the game hangs, requiring several clicks of the X, etc.

We are ending our game loop with

pygame.quit()
sys.exit()
âI prefer to let the script terminate itself (i.e. fall out the bottom), but sys.exit should work fine too. I remember having this issue with older versions of Python, but 2.7 or 3.* should work fine.

Here's some skeleton code that I use.

Ian