[issue22053] turtledemo: clean up start and stop, fix warning

2014-08-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5aa3f4863dda by Terry Jan Reedy in branch '3.4': #22053: actually remove .txt files from 3.4. http://hg.python.org/cpython/rev/5aa3f4863dda -- ___ Python tracker _

[issue22053] turtledemo: clean up start and stop, fix warning

2014-08-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: After backporting 004fe3449193 (#10921 3.5 patch) with changes as 7708f80940b0, forward port to 3.5 the 3.4 patch c26862955342 that did not merge before. The 3.4 and 3.5 files are identical. Misdirected changeset notices: New changeset 4349bbc21ca7 by Terry

[issue22053] turtledemo: clean up start and stop, fix warning

2014-07-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: Removal of 'demo' as a global name disabled help callbacks. I could have added 'global demo' to main(), but I decided to refactor and remove duplicate code instead. For 3.5, however, refactor would not merge because of #10291, so I made the simplest fix pendin

[issue22053] turtledemo: clean up start and stop, fix warning

2014-07-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7a55b34f1db2 by Terry Jan Reedy in branch '2.7': Issue #22053: Make help work, after previous patch for this issue disabled it http://hg.python.org/cpython/rev/7a55b34f1db2 New changeset c26862955342 by Terry Jan Reedy in branch '3.4': Issue #22053:

[issue22053] turtledemo: clean up start and stop, fix warning

2014-07-23 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___ __

[issue22053] turtledemo: clean up start and stop, fix warning

2014-07-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 823f5507bd86 by Terry Jan Reedy in branch '2.7': Issue #22053: Cleanup turtledemo start and stop and fix debug shutdown warning. http://hg.python.org/cpython/rev/823f5507bd86 New changeset 57531d65cdd4 by Terry Jan Reedy in branch '3.4': Issue #2205

[issue22053] turtledemo: clean up start and stop, fix warning

2014-07-23 Thread Terry J. Reedy
New submission from Terry J. Reedy: The patch adds a main function with the minimum needed to start the mainloop. It omits the 'while RUN' loop and development code for catching exceptions while running. They should never happen, and silently suppressing tracebacks is a bad idea. The patch al