Issue #22053: Cleanup turtledemo start and stop and fix debug shutdown warning.

This commit is contained in:
Terry Jan Reedy 2014-07-23 17:27:57 -04:00
parent 88b2b45154
commit b8352e7253
1 changed files with 5 additions and 21 deletions

View File

@ -252,27 +252,11 @@ class DemoWindow(object):
def _destroy(self):
self.root.destroy()
sys.exit()
def main():
demo = DemoWindow()
demo.root.mainloop()
if __name__ == '__main__':
demo = DemoWindow()
RUN = True
while RUN:
try:
#print("ENTERING mainloop")
demo.root.mainloop()
except AttributeError:
#print("AttributeError!- WAIT A MOMENT!")
time.sleep(0.3)
print("GOING ON ..")
demo.ckearCanvas()
except TypeError:
demo.screen._delete("all")
#print("CRASH!!!- WAIT A MOMENT!")
time.sleep(0.3)
#print("GOING ON ..")
demo.clearCanvas()
except:
print("BYE!")
RUN = False
main()