This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients serhiy.storchaka, terry.reedy
Date 2017-03-26.17:25:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1490549101.95.0.397312441336.issue29910@psf.upfronthosting.co.za>
In-reply-to
Content
Ctrl-D is binded to commenting out a block in IDLE. But additionally it deletes the first character of the line after the block. The default binding of Ctrl-D in Text widget is deleting a character under cursor. IDLE first comment out selected block, and after that runs the default handler.

Proposed patch fixes this issue and presumably other potential conflicts with default bindings. It just adds `return "break"` at the end of most event handlers.
History
Date User Action Args
2017-03-26 17:25:01serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy
2017-03-26 17:25:01serhiy.storchakasetmessageid: <1490549101.95.0.397312441336.issue29910@psf.upfronthosting.co.za>
2017-03-26 17:25:01serhiy.storchakalinkissue29910 messages
2017-03-26 17:25:01serhiy.storchakacreate