summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/multicall.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-12-03 16:34:37 (GMT)
committerGitHub <noreply@github.com>2023-12-03 16:34:37 (GMT)
commit36ad8e61a60c9f512378102b016796e2dfebef39 (patch)
treed7c99baf3cb37790145fa2c066b18b80053a0cc7 /Lib/idlelib/multicall.py
parent3d87a988a6a36acfeef34c134070d53dc5e6dc4d (diff)
downloadcpython-36ad8e61a60c9f512378102b016796e2dfebef39.zip
cpython-36ad8e61a60c9f512378102b016796e2dfebef39.tar.gz
cpython-36ad8e61a60c9f512378102b016796e2dfebef39.tar.bz2
[3.11] gh-66819: More IDLE htest updates(2) (GH-112642) (#112644)
Examine and update spec -- callable pairs. Revise run method. (cherry picked from commit 3855b45874d5f8eb92a4957fb9de6fdce63eb760) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/idlelib/multicall.py')
-rw-r--r--Lib/idlelib/multicall.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/idlelib/multicall.py b/Lib/idlelib/multicall.py
index 0200f44..2aa4a54 100644
--- a/Lib/idlelib/multicall.py
+++ b/Lib/idlelib/multicall.py
@@ -421,6 +421,8 @@ def _multi_call(parent): # htest #
top.geometry("+%d+%d" % (x, y + 175))
text = MultiCallCreator(tkinter.Text)(top)
text.pack()
+ text.focus_set()
+
def bindseq(seq, n=[0]):
def handler(event):
print(seq)