Opps...hmmm. Forgot I I use this function to test the main:
def TestErrors(function):
try:
function()
except Exception, e:
tb = sys.exc_info()[2]
traceback.print_exception(e.__class__, e, tb)
pygame.quit()
raw_input()
sys.exit()However, it sometimes has troubles recognizing changes after F5/run/quit, then F5/run. Also, tabs/spaces are all spaces... Ian
