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/query.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/query.py')
-rw-r--r-- | Lib/idlelib/query.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/query.py b/Lib/idlelib/query.py index df02f21..57230e2 100644 --- a/Lib/idlelib/query.py +++ b/Lib/idlelib/query.py @@ -368,7 +368,7 @@ class CustomRun(Query): sticky='we') def cli_args_ok(self): - "Validity check and parsing for command line arguments." + "Return command line arg list or None if error." cli_string = self.entry.get().strip() try: cli_args = shlex.split(cli_string, posix=True) |