https://github.com/python/cpython/commit/ba4084fa1767278b5703cad90c7a15067a3e5017 commit: ba4084fa1767278b5703cad90c7a15067a3e5017 branch: 3.15 author: Miss Islington (bot) <[email protected]> committer: terryjreedy <[email protected]> date: 2026-06-26T23:13:47Z summary:
[3.15] IDLE: fix dedent() usage in htest (GH-152256) (#152342) IDLE: fix dedent() usage in htest (GH-152256) Fix typos: in GH-112642, initial string concatenation quotes were left when switching to textwrap.dedent(). (cherry picked from commit 74272d4f0b8478c1d879671ba35ec4ddaae50178) Co-authored-by: Inada Naoki <[email protected]> files: M Lib/idlelib/idle_test/htest.py diff --git a/Lib/idlelib/idle_test/htest.py b/Lib/idlelib/idle_test/htest.py index b63ff9ec2877b96..778e5c3d84e4963 100644 --- a/Lib/idlelib/idle_test/htest.py +++ b/Lib/idlelib/idle_test/htest.py @@ -216,9 +216,9 @@ 'file': 'browser', 'kwds': {}, 'msg': textwrap.dedent(""" - "Inspect names of module, class(with superclass if applicable), - "methods and functions. Toggle nested items. Double clicking - "on items prints a traceback for an exception that is ignored.""") + Inspect names of module, class(with superclass if applicable), + methods and functions. Toggle nested items. Double clicking + on items prints a traceback for an exception that is ignored.""") } _multistatus_bar_spec = { _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
