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 Alan Moore
Recipients Alan Moore, serhiy.storchaka, terry.reedy
Date 2021-02-17.20:15:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1613592942.55.0.469804128535.issue43240@roundup.psfhosted.org>
In-reply-to
Content
Spent some time today with IDLE and PDB, and I've ruled out any other program on my system as the culprit:

- I can create a tkinter GUI that will respond to a binding like <Control-Key-x><Control-Key-s> and it works fine.
- In pdb, I can bind <<do-nothing>> to a callback and it is getting fired when Ctrl-x is pressed.  Thus, I was wrong to think anything else is "eating" the ctrl-x.
- Also in pdb, an .event_info('<<save-window>>') call on the editor's Text widget returns ('<Control-Key-x><Control-Key-s>',), so it looks bound correctly?  If I generate a <<save-window>> event, the dialog pops up as it should.

Nevertheless, Ctrl-x Ctrl-s opens the find dialog, and no other Ctrl-x (other keystroke) binding works.  I'm stumped.
History
Date User Action Args
2021-02-17 20:15:42Alan Mooresetrecipients: + Alan Moore, terry.reedy, serhiy.storchaka
2021-02-17 20:15:42Alan Mooresetmessageid: <1613592942.55.0.469804128535.issue43240@roundup.psfhosted.org>
2021-02-17 20:15:42Alan Moorelinkissue43240 messages
2021-02-17 20:15:42Alan Moorecreate