diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2023-12-03 09:28:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-03 09:28:37 (GMT) |
commit | 3855b45874d5f8eb92a4957fb9de6fdce63eb760 (patch) | |
tree | 49bce1712a8376402acd692f7f44c9b64ab6d4da /Lib/idlelib/multicall.py | |
parent | a9574c68f04695eecd19866faaf4cdee5965bc70 (diff) | |
download | cpython-3855b45874d5f8eb92a4957fb9de6fdce63eb760.zip cpython-3855b45874d5f8eb92a4957fb9de6fdce63eb760.tar.gz cpython-3855b45874d5f8eb92a4957fb9de6fdce63eb760.tar.bz2 |
gh-66819: More IDLE htest updates(2) (#112642)
Examine and update spec -- callable pairs.
Revise run method.
Diffstat (limited to 'Lib/idlelib/multicall.py')
-rw-r--r-- | Lib/idlelib/multicall.py | 2 |
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) |