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/browser.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/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) |