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.

classification
Title: IDLE: Do not jump when select in codecontext
Type: behavior Stage: resolved
Components: IDLE Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: cheryl.sabella, miss-islington, terry.reedy
Priority: normal Keywords: patch

Created on 2020-02-28 03:15 by terry.reedy, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 18683 merged terry.reedy, 2020-02-28 03:24
PR 18688 merged miss-islington, 2020-02-28 18:23
PR 18689 merged miss-islington, 2020-02-28 18:23
Messages (4)
msg362861 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2020-02-28 03:15
Tweak the code context widget so people can select context lines and copy to clipboard (perhaps to document nested code) without having to do the copy while still holding down the left mouse button.  Button-down, move, and release (to select) is not really a 'click', so I don't think a doc change is needed.
msg362894 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2020-02-28 18:23
New changeset c705fd1e89ccb8f6d414ec817b4616546147d877 by Terry Jan Reedy in branch 'master':
bpo-39781: Do not jump when select in IDLE codecontext (GH-18683)
https://github.com/python/cpython/commit/c705fd1e89ccb8f6d414ec817b4616546147d877
msg362900 - (view) Author: miss-islington (miss-islington) Date: 2020-02-28 18:41
New changeset f4198aee4c288ce47c5803e87a461e31f81a0138 by Miss Islington (bot) in branch '3.7':
bpo-39781: Do not jump when select in IDLE codecontext (GH-18683)
https://github.com/python/cpython/commit/f4198aee4c288ce47c5803e87a461e31f81a0138
msg362902 - (view) Author: miss-islington (miss-islington) Date: 2020-02-28 18:43
New changeset 846ca4961da24669e6e0c901986e66ff485917b2 by Miss Islington (bot) in branch '3.8':
bpo-39781: Do not jump when select in IDLE codecontext (GH-18683)
https://github.com/python/cpython/commit/846ca4961da24669e6e0c901986e66ff485917b2
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 83962
2020-02-28 18:55:54terry.reedysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-02-28 18:43:28miss-islingtonsetmessages: + msg362902
2020-02-28 18:41:23miss-islingtonsetmessages: + msg362900
2020-02-28 18:23:38miss-islingtonsetpull_requests: + pull_request18048
2020-02-28 18:23:30miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request18047
2020-02-28 18:23:02terry.reedysetmessages: + msg362894
2020-02-28 03:24:31terry.reedysetkeywords: + patch
stage: commit review -> patch review
pull_requests: + pull_request18042
2020-02-28 03:15:19terry.reedycreate