diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-12-03 16:34:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-03 16:34:37 (GMT) |
commit | 36ad8e61a60c9f512378102b016796e2dfebef39 (patch) | |
tree | d7c99baf3cb37790145fa2c066b18b80053a0cc7 /Lib/idlelib/browser.py | |
parent | 3d87a988a6a36acfeef34c134070d53dc5e6dc4d (diff) | |
download | cpython-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/browser.py')
-rw-r--r-- | Lib/idlelib/browser.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/browser.py b/Lib/idlelib/browser.py index 4fe64dc..672e229 100644 --- a/Lib/idlelib/browser.py +++ b/Lib/idlelib/browser.py @@ -254,5 +254,6 @@ if __name__ == "__main__": if len(sys.argv) == 1: # If pass file on command line, unittest fails. from unittest import main main('idlelib.idle_test.test_browser', verbosity=2, exit=False) + from idlelib.idle_test.htest import run run(_module_browser) |