diff options
author | Tal Einat <taleinat+github@gmail.com> | 2020-11-02 03:59:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-02 03:59:52 (GMT) |
commit | da7bb7b4d769350c5fd03e6cfb16b23dc265ed72 (patch) | |
tree | 90825dd55ad9782a1375e4594fd067ebf665c345 /Misc | |
parent | 74fa464b81ebf3312ae6efa11e618c00c2a9fd34 (diff) | |
download | cpython-da7bb7b4d769350c5fd03e6cfb16b23dc265ed72.zip cpython-da7bb7b4d769350c5fd03e6cfb16b23dc265ed72.tar.gz cpython-da7bb7b4d769350c5fd03e6cfb16b23dc265ed72.tar.bz2 |
bpo-40511: Stop unwanted flashing of IDLE calltips (GH-20910)
They were occurring with both repeated 'force-calltip' invocations and by typing parentheses
in expressions, strings, and comments in the argument code.
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2020-06-16-12-16-13.bpo-40511.XkihpM.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2020-06-16-12-16-13.bpo-40511.XkihpM.rst b/Misc/NEWS.d/next/IDLE/2020-06-16-12-16-13.bpo-40511.XkihpM.rst new file mode 100644 index 0000000..cc96798 --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2020-06-16-12-16-13.bpo-40511.XkihpM.rst @@ -0,0 +1,3 @@ +Typing opening and closing parentheses inside the parentheses of a function +call will no longer cause unnecessary "flashing" off and on of an existing +open call-tip, e.g. when typed in a string literal. |