[3.11] gh-66819: More IDLE htest updates(3) (GH-112683) (#112685)

Revise spec-callable pairs from percolator to end.
(cherry picked from commit 5a1b5316af)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
This commit is contained in:
Miss Islington (bot) 2023-12-04 06:10:22 +01:00 committed by GitHub
parent 73411ea95e
commit e347a8e0e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 27 additions and 26 deletions

View file

@ -113,7 +113,7 @@ class VariablesTreeItem(ObjectTreeItem):
return sublist
def _stack_viewer(parent): # htest #
def _stackbrowser(parent): # htest #
from idlelib.pyshell import PyShellFileList
top = tk.Toplevel(parent)
top.title("Test StackViewer")
@ -131,4 +131,4 @@ if __name__ == '__main__':
main('idlelib.idle_test.test_stackviewer', verbosity=2, exit=False)
from idlelib.idle_test.htest import run
run(_stack_viewer)
run(_stackbrowser)