summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTal Einat <taleinat+github@gmail.com>2020-11-02 03:59:52 (GMT)
committerGitHub <noreply@github.com>2020-11-02 03:59:52 (GMT)
commitda7bb7b4d769350c5fd03e6cfb16b23dc265ed72 (patch)
tree90825dd55ad9782a1375e4594fd067ebf665c345 /Misc
parent74fa464b81ebf3312ae6efa11e618c00c2a9fd34 (diff)
downloadcpython-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.rst3
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.