[issue14997] IDLE tries to run shell window if line is completed with F5 rather than Enter

2012-10-04 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thanks to Roger Serwy. -- nosy: +asvetlov resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue14997] IDLE tries to run shell window if line is completed with F5 rather than Enter

2012-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 52ef53398096 by Andrew Svetlov in branch '3.3': Merge: Issue #14997: disable in idle shell window. http://hg.python.org/cpython/rev/52ef53398096 New changeset a40981be184d by Andrew Svetlov in branch 'default': Merge: Issue #14997: disable in idle

[issue14997] IDLE tries to run shell window if line is completed with F5 rather than Enter

2012-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset f6aaac839d83 by Andrew Svetlov in branch '3.2': Issue #14997: disable in idle shell window. http://hg.python.org/cpython/rev/f6aaac839d83 -- nosy: +python-dev ___ Python tracker

[issue14997] IDLE tries to run shell window if line is completed with F5 rather than Enter

2012-09-30 Thread Roger Serwy
Changes by Roger Serwy : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14997] IDLE tries to run shell window if line is completed with F5 rather than Enter

2012-06-14 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue14997] IDLE tries to run shell window if line is completed with F5 rather than Enter

2012-06-05 Thread Roger Serwy
Roger Serwy added the comment: The ScriptBinding extension is enabled for the shell. If the shell is in a modified state, then pressing F5 will bring up the save dialog (or auto-save), and then perform a syntax check. This is what cuublu experienced. Attached is a patch against 3.3a4 to disab

[issue14997] IDLE tries to run shell window if line is completed with F5 rather than Enter

2012-06-05 Thread Ned Deily
Ned Deily added the comment: Thanks for the additional information; it's now clear what's going on. IDLE has two kinds of windows where code can be entered. When you launch IDLE, by default it opens with its shell window. This window is similar to running the Python interpreter in interact