[issue29910] Ctrl-D eats a character on IDLE

2017-08-07 Thread Louie Lu
Louie Lu added the comment: da..., Terry reverts this soon. -- ___ Python tracker ___ ___ Python-bugs-list

[issue29910] Ctrl-D eats a character on IDLE

2017-08-07 Thread Louie Lu
Louie Lu added the comment: After bisecting, commit 213ce12adfc9281c6f381bb45d132e9de8ffd450 cause calltip can't close when type to `)` at the end. for example: print('blablalbalba') ^ show ^ didn't tipclose tip -- nosy: +louielu

[issue29910] Ctrl-D eats a character on IDLE

2017-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset b61de2d46596ac00dcf2d33bbce2023d0bf4207b by Terry Jan Reedy in branch '3.6': [3.6] bpo-29910: IDLE - revert `break`s that disabled calltip close. (GH-2997) (#3017) https://github.com/python/cpython/commit/b61de2d46596ac00dcf2d33bbce2023d0bf4207b

[issue29910] Ctrl-D eats a character on IDLE

2017-08-07 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +3050 ___ Python tracker ___ ___

[issue29910] Ctrl-D eats a character on IDLE

2017-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 89225871d314fa675ea9ac292e7bc75320f1aef5 by Terry Jan Reedy in branch 'master': bpo-29910: IDLE - revert `break`s that disabled calltip close. (#2997) https://github.com/python/cpython/commit/89225871d314fa675ea9ac292e7bc75320f1aef5 --

[issue29910] Ctrl-D eats a character on IDLE

2017-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Adding 'break' to parenmatch.paren_closed_event prevented ')' from closing calltips. Removing it reverts the regression. I am leaving this open to re-review the other optional changes to see if ')' is unique or if anything else is being caught that needs to

[issue29910] Ctrl-D eats a character on IDLE

2017-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +3034 ___ Python tracker ___ ___

[issue29910] Ctrl-D eats a character on IDLE

2017-06-27 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: -2504 ___ Python tracker ___ ___

[issue29910] Ctrl-D eats a character on IDLE

2017-06-27 Thread Charles Wohlganger
Changes by Charles Wohlganger : -- pull_requests: +2504 ___ Python tracker ___

[issue29910] Ctrl-D eats a character on IDLE

2017-06-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks for the fix. I am now comfortable enough with the new workflow to begin making a dent in the 100+ patch backlog waiting for review. -- resolution: -> fixed stage: test needed -> resolved status: open -> closed

[issue29910] Ctrl-D eats a character on IDLE

2017-06-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 8bdc3bd3d66fefdc07d32bd19c41c6f902f16111 by terryjreedy in branch '3.6': [3.6] bpo-29910: IDLE no longer deletes a character after commenting out a region (GH-825) (#2429)

[issue29910] Ctrl-D eats a character on IDLE

2017-06-26 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2480 ___ Python tracker ___ ___

[issue29910] Ctrl-D eats a character on IDLE

2017-06-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 213ce12adfc9281c6f381bb45d132e9de8ffd450 by terryjreedy (Serhiy Storchaka) in branch 'master': bpo-29910: IDLE no longer deletes a character after commenting out a region (#825)

[issue29910] Ctrl-D eats a character on IDLE

2017-06-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: I have since discovered the [unified][split] buttons in the diff windows. I have also starting applying the return run elsewhere in idlelib. I had to think about paren_match_event. It is bound to KeyRelease-parenright, etc, via config-extentions.def and

[issue29910] Ctrl-D eats a character on IDLE

2017-03-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > (Not having side by side diffs as with Rietveld makes this much harder.) Click on the "Files changed" tab on the PR page: https://github.com/python/cpython/pull/825/files . You can add inline comments when click on the "+" button that follows your mouse

[issue29910] Ctrl-D eats a character on IDLE

2017-03-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: Checking, I see that the default ^D binding to DEL is documented in IDLE Help, section 2, Editing and Navigation, along with other Text defaults. (I need to determine if the list is complete. Is it the same on all systems?) I question whether IDLE should

[issue29910] Ctrl-D eats a character on IDLE

2017-03-26 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +731 ___ Python tracker ___ ___

[issue29910] Ctrl-D eats a character on IDLE

2017-03-26 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: 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