[issue45296] IDLE: Change Ctrl-Z note in exit/quit repr on Windows

2021-09-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 813fbba4cab4556e55d6044c05725a26ec20b648 by Miss Islington (bot) in branch '3.9': bpo-45296: Fix exit/quit message on Windows (GH-28577) (GH-28601) https://github.com/python/cpython/commit/813fbba4cab4556e55d6044c05725a26ec20b648 --

[issue45296] IDLE: Change Ctrl-Z note in exit/quit repr on Windows

2021-09-28 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e649e0658ff2af87b07d994c05ae048e16e31aae by Terry Jan Reedy in branch 'main': bpo-45296: Fix exit/quit message on Windows (GH-28577) https://github.com/python/cpython/commit/e649e0658ff2af87b07d994c05ae048e16e31aae -- nosy: +lukasz.langa

[issue45296] IDLE: Change Ctrl-Z note in exit/quit repr on Windows

2021-09-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +26977 pull_request: https://github.com/python/cpython/pull/28601 ___ Python tracker ___

[issue45296] IDLE: Change Ctrl-Z note in exit/quit repr on Windows

2021-09-28 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +26976 pull_request: https://github.com/python/cpython/pull/28600 ___ Python tracker

[issue41468] IDLE: "Unrecoverable server exiting" message

2021-09-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- title: Unrecoverable server exiting -> IDLE: "Unrecoverable server exiting" message ___ Python tracker <https://bugs.pytho

[issue2821] IDLE: unittest.py sys.exit error

2021-09-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- title: unittest.py sys.exit error -> IDLE: unittest.py sys.exit error ___ Python tracker <https://bugs.python.org/iss

[issue17838] Can't assign a different value for sys.stdin in IDLE

2021-09-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45296] IDLE: Change Ctrl-Z note in exit/quit repr on Windows

2021-09-27 Thread E. Paine
E. Paine added the comment: > How about "Control-D (end-of-file, a.k.a. EOF)" I doubt beginners care that it's EOF. > or even just "Control-D" I'd be a lot more inclined towards this. > IDLE uses the latter [Ctrl-D] even on Windows, and Ctrl-Z does not w

[issue11838] IDLE: make interactive code savable as a runnable script

2021-09-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: In #45297, Steven D'Aprano suggests deleting code immediately followed by traceback. (SyntaxErrors should not be there at all -- another issue.) But should NameError, for instance, be ignore, just because user printed something? Or block removed just

[issue45296] IDLE: Change Ctrl-Z note in exit/quit repr on Windows

2021-09-27 Thread Tal Einat
Tal Einat added the comment: How about "Control-D (end-of-file, a.k.a. EOF)" or even just "Control-D"? -- ___ Python tracker ___

[issue21140] Idle: saving Shell or an OutputWindow should default to .txt

2021-09-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: >From #45297, closed as duplicate. https://discuss.python.org/t/what-is-this-syntax-i-dont-know-how-to-fix-it/10844 -- ___ Python tracker

[issue11838] IDLE: make interactive code savable as a runnable script

2021-09-26 Thread Terry J. Reedy
Change by Terry J. Reedy : -- priority: normal -> high ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11838] IDLE: make interactive code savable as a runnable script

2021-09-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: This should be easier to do with the new shell with indents fixed. -- nosy: -roger.serwy, tlesher versions: +Python 3.11 -Python 3.6, Python 3.7 ___ Python tracker

[issue45296] IDLE: Change Ctrl-Z note in exit/quit repr on Windows

2021-09-26 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +26960 stage: -> patch review pull_request: https://github.com/python/cpython/pull/28577 ___ Python tracker ___

[issue45296] IDLE: Change Ctrl-Z note in exit/quit repr on Windows

2021-09-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: Tal, Paine: should be use exactly the raw REPL message or something that might be clearer to beginners, like 'Ctrl-D (end-of-file)'? -- nosy: +epaine, taleinat ___ Python tracker

[issue45296] IDLE: Change Ctrl-Z note in exit/quit repr on Windows

2021-09-26 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE type: -> behavior versions: +Python 3.10, Python 3.11, Python 3.9 ___ Python tracker <https://bugs.python.org/i

[issue45297] Improve the IDLE shell save command

2021-09-26 Thread Steven D'Aprano
New submission from Steven D'Aprano : See this question on Discuss: https://discuss.python.org/t/what-is-this-syntax-i-dont-know-how-to-fix-it/10844 It seems that IDLE allows you to save the shell output, complete with welcome message and prompts, as a .py file, and then reopen

[issue45296] IDLE: Change Ctrl-Z note in exit/quit repr on Windows

2021-09-26 Thread Terry J. Reedy
New submission from Terry J. Reedy : On Windows: >>> exit 'Use exit() or Ctrl-Z plus Return to exit' >>> quit 'Use quit() or Ctrl-Z plus Return to exit' >>> exit.eof 'Ctrl-Z plus Return' On *nix, 'Ctrl-Z plus Return' is 'Ctrl-D (i.e, EOF)' IDLE uses the latter even

[issue41266] IDLE call hints and completions confused by ints and floats

2021-09-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: What is your point? Code without explanation is useless. -- ___ Python tracker ___ ___

[issue41266] IDLE call hints and completions confused by ints and floats

2021-09-21 Thread wyz23x2
wyz23x2 added the comment: Ping. >>> from datetime import datetime as d >>> d(2021, 9, 22)-d(2020, 7, 10) datetime.timedelta(days=439) -- ___ Python tracker ___

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-19 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: > are ready to be cherrypicked into into the 3.10.0 release branch. Once that is done, 'release blocker' can be removed, but issue should remain open for a separate fix for 3.9. Done! I am removing the release blocker and the 3.10, 3.11 version

[issue45103] IDLE: make configdialog font page survive font failures

2021-09-17 Thread E. Paine
E. Paine added the comment: https://core.tcl-lang.org/tk/tktview/0338867c742 IMO this should be closed as third-party, since there is very little we can / should do (yes we could remove the offending characters from the preview if the user has the font installed, but this is a lot of extra

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: 0c64569ac7066a97e4482c6d6e4d780806692ae5 a5bc0ffc520e09226f85d5fa8faaa83be0acee68 are ready to be cherrypicked into into the 3.10.0 release branch. Once that is done, 'release blocker' can be removed, but issue should remain open for a separate fix for

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-15 Thread miss-islington
miss-islington added the comment: New changeset a5bc0ffc520e09226f85d5fa8faaa83be0acee68 by Miss Islington (bot) in branch '3.10': bpo-45193: News for IDLE PR_28343 (GH-28348) https://github.com/python/cpython/commit/a5bc0ffc520e09226f85d5fa8faaa83be0acee68

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 9d76d28867c28bcc881b851547a9cd7ac003ae88 by Terry Jan Reedy in branch 'main': bpo-45193: News for IDLE PR_28343 (GH-28348) https://github.com/python/cpython/commit/9d76d28867c28bcc881b851547a9cd7ac003ae88

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-15 Thread miss-islington
Change by miss-islington : -- pull_requests: +26783 pull_request: https://github.com/python/cpython/pull/28369 ___ Python tracker ___

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-15 Thread miss-islington
miss-islington added the comment: New changeset 0c64569ac7066a97e4482c6d6e4d780806692ae5 by Miss Islington (bot) in branch '3.10': bpo-45193: Restore IDLE completion boxes on Ubuntu (GH-28343) https://github.com/python/cpython/commit/0c64569ac7066a97e4482c6d6e4d780806692ae5

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-15 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +26761 pull_request: https://github.com/python/cpython/pull/28348 ___ Python tracker ___

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-15 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +26760 pull_request: https://github.com/python/cpython/pull/28347 ___ Python tracker

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 1afc7b3219b24c951bb4e6b7e1ead904228de074 by Terry Jan Reedy in branch 'main': bpo-45193: Restore IDLE completion boxes on Ubuntu (GH-28343) https://github.com/python/cpython/commit/1afc7b3219b24c951bb4e6b7e1ead904228de074

[issue45197] IDLE should suppress ValueError for list.remove()

2021-09-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: The offending function is def event_delete(self, virtual, *sequences): if virtual not in self.__eventinfo: return func, triplets = self.__eventinfo[virtual] for seq in sequences:

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-14 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +26755 pull_request: https://github.com/python/cpython/pull/28343 ___ Python tracker ___

[issue40128] IDLE Show completions pop-up not working on macOS

2021-09-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Pablo, sorry I was not clear. PR_26684 and the line it added, having been merged last June, are already in the 3.10.0rc2 release. What I want to do immediately is disable the line with a '#'. I just posted an explanation on #34193. I am about to make a

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: I will just mention here that winconfig_event also calls update_idletasks, in what should be the proper place, and I think that the second call was only needed for mac tk 8.6.8 because of the unique-to-IDLE behavior I want to delete. I suspect that if we

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: In msg401744 I suggested any of the following for the upcoming 3.10.0 release. 1. Remove the new line. 2. Disable the line by adding '#'. 3. Make it conditional on macOS and 8.6.8. Thinking more, I am rejecting 3. because the line is not needed for IDLE

[issue45199] IDLE: document search (find) and replace better

2021-09-14 Thread Terry J. Reedy
sion HOWTO. -- assignee: terry.reedy components: IDLE messages: 401801 nosy: terry.reedy priority: normal severity: normal stage: needs patch status: open title: IDLE: document search (find) and replace better type: enhancement versions: Python 3.11 ___ Pyth

[issue40128] IDLE Show completions pop-up not working on macOS

2021-09-14 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: > Pablo, I'm not sure what you cherry-picked, I cherry-picked https://github.com/python/cpython/pull/26684 but this can be easily undone as this is cherry-picked to the 3.10.0 release branch that I have much more control upon. What would you prefer

[issue40128] IDLE Show completions pop-up not working on macOS

2021-09-14 Thread Tal Einat
Tal Einat added the comment: Pablo, I'm not sure what you cherry-picked, but this fix for macOS broke the completions pop-up on Linux, and that appears to still be the state of things now on the 3.10.0 branch. Let's please not leave things this way if at all possible. --

[issue40128] IDLE Show completions pop-up not working on macOS

2021-09-14 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Thanks Terry, I have cherry-picked commit b441e99d89a3f05210cc36ade57699384986ca00 to the 3.10.0 release branch! -- ___ Python tracker

[issue45197] IDLE should suppress ValueError for list.remove()

2021-09-14 Thread Raymond Hettinger
e "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/idlelib/multicall.py", line 392, in event_delete triplets.remove(triplet) ValueError: list.remove(x): x not in list -- assignee: terry.reedy components: IDLE messages: 401782 nosy: rhettinger, terry.reedy pr

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-14 Thread Tal Einat
Tal Einat added the comment: See PR GH-28328 with proposed fix. It should be tested on macOS with several relevant versions of Tcl/Tk to ensure that the Tk version range used is correct. -- ___ Python tracker

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-14 Thread Tal Einat
Change by Tal Einat : -- pull_requests: +26739 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/28328 ___ Python tracker ___

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-14 Thread Tal Einat
Change by Tal Einat : -- stage: patch review -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-14 Thread Tal Einat
Change by Tal Einat : -- pull_requests: -26735 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-14 Thread Tal Einat
Change by Tal Einat : -- keywords: +patch pull_requests: +26735 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/26039 ___ Python tracker

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-14 Thread Tal Einat
Tal Einat added the comment: I've also tested this on Windows 10 with the latest main branch (to be 3.11). The completions window works as expected with or without the recently added .update_idletasks() call. I do recommend limiting this to macOS (platform.system() == "Darwin"). Ideally

[issue40128] IDLE Show completions pop-up not working on macOS

2021-09-14 Thread Tal Einat
Tal Einat added the comment: I've created a separate issue for the completion window not appearing on Linux, issue #45193. Let's move the discussion there. -- ___ Python tracker

[issue45193] IDLE Show completions pop-up not working on Ubuntu Linux

2021-09-14 Thread Tal Einat
out that line resolves this issue entirely. (See also the PR for that fix, PR GH-26672.) -- assignee: terry.reedy components: IDLE messages: 401758 nosy: taleinat, terry.reedy priority: normal severity: normal stage: needs patch status: open title: IDLE Show completions pop-up not working

[issue40128] IDLE Show completions pop-up not working on macOS

2021-09-14 Thread Tal Einat
Tal Einat added the comment: Note that _tkinter.TK_VERSION and _tkinter.TK_VERSION are simply "8.6", not enough to differentiate between patch versions. The best way to get this info appears to be tk.call("info", "patchlevel"). Specifically I suggest: TK_VERSION = tuple(map(int,

[issue40128] IDLE Show completions pop-up not working on macOS

2021-09-14 Thread Tal Einat
Tal Einat added the comment: Confirmed with python 3.9.7 installed via the "deadsnakes" apt repo on another Ubuntu 20.04 machine. "Confirmed" meaning specifically that the completion window never appears, and commenting out that single line resolves the issue. --

[issue40128] IDLE Show completions pop-up not working on macOS

2021-09-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: https://www.tcl.tk/man/tcl8.6/TclCmd/update.html -- ___ Python tracker ___ ___ Python-bugs-list

[issue40128] IDLE Show completions pop-up not working on macOS

2021-09-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: Pablo (and Ned) PR_26672 (and backports) added one line to idlelib/autocomplete_w.py, 206 or 209. acw.update_idletasks() # Need for tk8.6.8 on macOS: #40128. NEWs item included "The added update_idletask call should be harmless and possibly helpful

[issue45103] IDLE: make configdialog font page survive font failures

2021-09-09 Thread E. Paine
E. Paine added the comment: It turns out the problem is a combination of the font and IDLE preview content. With the phaistos font installed, inserting the content of the "Devanagari, Tamil" or "East Asian" sections into a Tk text widget causes it to freeze. For ex

[issue32955] IDLE crashes when trying to save a file

2021-09-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thank you Irit. For any users who stumble on this issue: Drop down clicks in the dialog are handled by tk. Hence, this was not an IDLE issue, unlikely to be a tkinter issue, and most likely a bad tcl/tk version issue. Hence my first post. My response

[issue32955] IDLE crashes when trying to save a file

2021-09-07 Thread Irit Katriel
Irit Katriel added the comment: Closing as there isn't enough information and there has been no response from the OP to the follow-up questions. -- nosy: +iritkatriel resolution: -> works for me stage: -> resolved status: open -> closed ___

[issue45103] IDLE: make configdialog font page survive font failures

2021-09-06 Thread E. Paine
E. Paine added the comment: IDLE is hanging on Lib/idlelib/configdialog.py:94 (`self.wait_window()`). Commenting this does not solve the problem: I think it's in the Tk event loop somewhere, since my debugger shows the Python callback completing successfully. This still doesn't explain

[issue45103] IDLE: make configdialog font page survive font failures

2021-09-06 Thread E. Paine
E. Paine added the comment: > did problems occur without displaying any emoji I was using an unmodified version of IDLE. > If they include one of those characters in the font name displayed in the > font list This is not the case. It is listed simply as "Phaistos&

[issue45103] IDLE: make configdialog font page survive font failures

2021-09-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: If nothing else, I should amend the doc note about font problems to include Windows if we verify the report. -- ___ Python tracker ___

[issue45103] IDLE: make configdialog font page survive font failures

2021-09-06 Thread Terry J. Reedy
font crashes (sometimes it does load but all characters are very random - most are whitespace - and it crashes again after a call to `fc-cache`). IDLE crashes when trying to preview the font. I believe this is what is being experienced on https://askubuntu.com/questions/1236488/x-error-of-failed-re

[issue45103] IDLE: make configdialog font page survive font failures

2021-09-06 Thread E. Paine
E. Paine added the comment: Apologies, my previous message was not clear. When the segfault occurs is not consistent and sometimes occurs when previewing the font (as reported in the linked message) but more often when clicking the "ok" button (for which the faulthandler details are

[issue45103] IDLE: make configdialog font page survive font failures

2021-09-06 Thread E. Paine
ine 1429 in mainloop File "/usr/lib/python3.9/idlelib/pyshell.py", line 1572 in main File "/usr/lib/python3.9/idlelib/idle.py", line 14 in File "", line 228 in _call_with_frames_removed File "", line 850 in exec_module File "", line 680 in _load_unlock

[issue45103] IDLE: make configdialog font page survive font failures

2021-09-04 Thread Terry J. Reedy
or something. I did not open an issue for this because it seemed beyond the ability of tkinter/IDLE to predict and handle. https://stackoverflow.com/questions/68996159/idle-settings-window-wont-appear reported that requesting the IDLE settings window resulting in IDLE hanging. The user used my print

[issue44574] IDLE: Implement or delete python-context-help.

2021-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: I should check whether all other keybindings are implemented. -- ___ Python tracker ___ ___

[issue44574] IDLE: Implement or delete python-context-help.

2021-07-06 Thread Terry J. Reedy
(https://stackoverflow.com/questions/68263769/idle-shell-context-documentation-broken) The string does not appear elsewhere in idlelib, nor is the feature mentioned in the IDLE doc. So it is unimplemented and undocumented. Based on experience with other IDEs (Mathematica) Mondher suggests that one should b

Re: IDLE is not working after Python installation .

2021-06-22 Thread Mats Wichmann
On 6/21/21 11:14 PM, Ayaana Soni wrote: I have installed python from your site. After installation my IDLE doesn't work. IDLE is not in my search list. Plz help!! Thank you! you asked this before, and didn't answer the questions you got in reply. What does "doesn't work"

Re: IDLE is not working after Python installation .

2021-06-22 Thread Terry Reedy
On 6/22/2021 1:14 AM, Ayaana Soni wrote: I have installed python from your site. For what OS. After installation my IDLE doesn't work. How did you try to start it? Did you read the Using Python doc on the website? Can you start python? IDLE is not in my search list. On Windows

IDLE is not working after Python installation .

2021-06-21 Thread Ayaana Soni
I have installed python from your site. After installation my IDLE doesn't work. IDLE is not in my search list. Plz help!! Thank you! -- https://mail.python.org/mailman/listinfo/python-list

[issue41611] IDLE: problems with completions on Mac

2021-06-11 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue41611] IDLE: problems with completions on Mac

2021-06-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: #40128, which inserted update_idletasks in a different place, fixed completions for me in installed 3.9.5. They already worked fine for me in installed 3.10.0b2. #41859 is another report by Raymond of a 'random' ValueError connected with completions.

[issue40128] IDLE Show completions pop-up not working on macOS

2021-06-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thank you for the fix. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40128] IDLE Show completions pop-up not working on macOS

2021-06-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset a9e20cf7bbf3ba39260fca112938f95e4f317efc by Miss Islington (bot) in branch '3.9': bpo-40128: Fix IDLE autocomplete on macOS (GH-26672) https://github.com/python/cpython/commit/a9e20cf7bbf3ba39260fca112938f95e4f317efc

[issue40128] IDLE Show completions pop-up not working on macOS

2021-06-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset b441e99d89a3f05210cc36ade57699384986ca00 by Miss Islington (bot) in branch '3.10': bpo-40128: Fix IDLE autocomplete on macOS (GH-26672) https://github.com/python/cpython/commit/b441e99d89a3f05210cc36ade57699384986ca00

[issue40128] IDLE Show completions pop-up not working on macOS

2021-06-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +25272 pull_request: https://github.com/python/cpython/pull/26684 ___ Python tracker ___

[issue40128] IDLE Show completions pop-up not working on macOS

2021-06-11 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 6.0 -> 7.0 pull_requests: +25271 pull_request: https://github.com/python/cpython/pull/26683 ___ Python tracker

[issue40128] IDLE Show completions pop-up not working on macOS

2021-06-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 3ec3ee7d2e9b45b586e486e429b412d6d0ca530f by Kaustubh J in branch 'main': bpo-40128: Fix IDLE autocomplete on macOS (GH-26672) https://github.com/python/cpython/commit/3ec3ee7d2e9b45b586e486e429b412d6d0ca530f

[issue44398] IDLE: On macOS, cntl-space/backslash display as ^S/^B

2021-06-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: ^B would work as an alternate binding for <> as it is not used otherwise, but I prefer not to have to do this. These are the only named keys other than the 'F#'s. -- ___ Python tracker

[issue40128] IDLE Show completions pop-up not working on macOS

2021-06-11 Thread Kaustubh J
Change by Kaustubh J : -- keywords: +patch nosy: +thsubaku9 nosy_count: 5.0 -> 6.0 pull_requests: +25267 pull_request: https://github.com/python/cpython/pull/26672 ___ Python tracker

[issue40128] IDLE Show completions pop-up not working on macOS

2021-06-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: With 3.10.0b2 on my MacBook Air, completions work as far as I tested, with Edit => Show completions, Tab, and ^-Space. i i<^-Space> int.(configered pause) int.<^-Space, after dismissing box with Esc key> 3.9.5, without the patch, remains buggy. I attribute

[issue44398] IDLE: On macOS, cntl-space/backslash display as ^S/^B

2021-06-11 Thread Terry J. Reedy
bug. Can this be fixed? If not, we could add ^S as an alternate hotkey on macOS. '^S' causes 'Edit' to flash, indicating, I believe, that it is recognized as an Edit menu hotkey. But nothing happens as IDLE/tk does not recognize it on macOS. (On Windows, it means 'save'.) ^space, currently work

[issue24781] Improve UX of IDLE Highlighting configuration tab

2021-06-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: Since uipreferences.py was written, in 2015, configdialog uses ttk widgets, including Notebook. We have factored out a class for each notebook pane plus one for help sources and one for traced variables. I have in mind something like highlight3.png and

[issue31930] IDLE: Pressing "Home" on Windows places cursor before ">>>"

2021-06-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: IDLE Classic Windows currently works correctly. A custom keyset with <> badly rebound does not. So maybe I was using the latter when I open this. Anyway, this is moot in 3.10 with prompt removed, and I intend to backpart the

[issue18444] IDLE: Revise macOS key bindings, make new one.

2021-06-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: I also closed #21359, which has more comment from Ned about bindings not working. -- ___ Python tracker ___

[issue21359] IDLE macOS: Some Command shortcuts do not work correctly

2021-06-10 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> duplicate stage: test needed -> resolved status: open -> closed superseder: -> IDLE: Revise macOS key bindings, make new one. ___ Python tracker <https://bugs.python

[issue18444] IDLE: Revise macOS key bindings, make new one.

2021-06-10 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +macOS ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18444] IDLE: Revise macOS key bindings, make new one.

2021-06-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: I closed #32761 about new macOS keyset, in favor of this one. There is a bit more discussion there to consider. I agree that a chart of <> down side and keyset across top would be a good start. -- nosy: -Todd.Rovito title: IDLE: Revise Ma

[issue32761] Create IDLE Modern Mac keyset

2021-06-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: #18444 is about revising macOS keysets and/or making a new one. This is about the latter. So closing as duplicate. -- resolution: -> duplicate stage: -> needs patch status: open -> closed superseder: -> IDLE: Revise Mac OS X

[issue33962] IDLE: use ttk.spinbox with configdialog

2021-06-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: Mark, I am not sure what last comment meant, but we generally only test IDLE with 3.x with the 8.6.y that comes with 3.x. Ned Deily sometimes runs gui tests with various tcl/tk versions and builds to select one for the installer, but he knows about

[issue33962] IDLE: use ttk.spinbox with configdialog

2021-06-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 540ebc4a8874f94152980be7778f3f793b65f111 by Miss Islington (bot) in branch '3.10': bpo-33962: Use ttk spinbox for IDLE indent space config (GH-22954) https://github.com/python/cpython/commit/540ebc4a8874f94152980be7778f3f793b65f111

[issue33962] IDLE: use ttk.spinbox with configdialog

2021-06-10 Thread miss-islington
miss-islington added the comment: New changeset 9b889433c7bb3ed7e2b4655f024b49d97fe412fb by Miss Islington (bot) in branch '3.9': bpo-33962: Use ttk spinbox for IDLE indent space config (GH-22954) https://github.com/python/cpython/commit/9b889433c7bb3ed7e2b4655f024b49d97fe412fb

[issue33962] IDLE: use ttk.spinbox with configdialog

2021-06-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +25234 pull_request: https://github.com/python/cpython/pull/26648 ___ Python tracker ___

[issue33962] IDLE: use ttk.spinbox with configdialog

2021-06-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 42d5a4fc3b35e45cdd237d56a04e98894d0a31f5 by Mark Roseman in branch 'main': bpo-33962: Use ttk spinbox for IDLE indent space config (GH-22954) https://github.com/python/cpython/commit/42d5a4fc3b35e45cdd237d56a04e98894d0a31f5

[issue33962] IDLE: use ttk.spinbox with configdialog

2021-06-10 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +25233 pull_request: https://github.com/python/cpython/pull/26647 ___ Python tracker

[issue40468] IDLE: configdialog tab rearrange

2021-06-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: Along with the spinbox PR for #33962, I believe everything discussed here is done. There are still issues to improve specific pages. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue33051] IDLE: Create new tab for editor options in configdialog

2021-06-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed superseder: -> IDLE: configdialog tab rearrange ___ Python tracker <https://bugs.python

[issue40468] IDLE: configdialog tab rearrange

2021-06-09 Thread miss-islington
miss-islington added the comment: New changeset d9f38d77c870cdb04273914c92fa4fe92b830d88 by Miss Islington (bot) in branch '3.9': bpo-40468: Split IDLE settings General tab (GH-26621) https://github.com/python/cpython/commit/d9f38d77c870cdb04273914c92fa4fe92b830d88

[issue40468] IDLE: configdialog tab rearrange

2021-06-09 Thread miss-islington
miss-islington added the comment: New changeset 664ae29e6f61988e74cb8753dd4ee71e9ea57227 by Miss Islington (bot) in branch '3.10': bpo-40468: Split IDLE settings General tab (GH-26621) https://github.com/python/cpython/commit/664ae29e6f61988e74cb8753dd4ee71e9ea57227

[issue40468] IDLE: configdialog tab rearrange

2021-06-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +25215 pull_request: https://github.com/python/cpython/pull/26629 ___ Python tracker ___

[issue40468] IDLE: configdialog tab rearrange

2021-06-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 275d5f7957dbb56a6d5e1248addff210ee2e7270 by Terry Jan Reedy in branch 'main': bpo-40468: Split IDLE settings General tab (GH-26621) https://github.com/python/cpython/commit/275d5f7957dbb56a6d5e1248addff210ee2e7270

[issue40468] IDLE: configdialog tab rearrange

2021-06-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +25214 pull_request: https://github.com/python/cpython/pull/26628 ___ Python tracker ___

[issue40468] IDLE: configdialog tab rearrange

2021-06-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +25205 pull_request: https://github.com/python/cpython/pull/26621 ___ Python tracker ___

<    1   2   3   4   5   6   7   8   9   10   >