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 roger.serwy
Recipients ankit615, asvetlov, ned.deily, roger.serwy
Date 2012-03-29.03:13:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1332990841.13.0.0933693814464.issue14409@psf.upfronthosting.co.za>
In-reply-to
Content
Ned, the buggy default keybinding for <<newline-and-indent>> requires that Key-Return and then Key-KP_Enter be pressed before the virtual event triggers. This happens because both key events are present in a single string. The correct behavior requires each key event be listed in a separate string in a list. (See <<copy>> for an example). MultiCall.py has code (event_add) that iterates over the list and binds each key to an event.

This bug is also present in 2.3.5. (I just downloaded and tested it on XP.)
History
Date User Action Args
2012-03-29 03:14:01roger.serwysetrecipients: + roger.serwy, ned.deily, asvetlov, ankit615
2012-03-29 03:14:01roger.serwysetmessageid: <1332990841.13.0.0933693814464.issue14409@psf.upfronthosting.co.za>
2012-03-29 03:14:00roger.serwylinkissue14409 messages
2012-03-29 03:13:59roger.serwycreate