From 74272d4f0b8478c1d879671ba35ec4ddaae50178 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Sat, 27 Jun 2026 07:47:33 +0900 Subject: [PATCH] IDLE: fix dedent() usage in htest (#152256) Fix typos: in #112642, initial string concatenation quotes were left when switching to textwrap.dedent(). --- Lib/idlelib/idle_test/htest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/idlelib/idle_test/htest.py b/Lib/idlelib/idle_test/htest.py index b63ff9ec2877..778e5c3d84e4 100644 --- a/Lib/idlelib/idle_test/htest.py +++ b/Lib/idlelib/idle_test/htest.py @@ -216,9 +216,9 @@ _module_browser_spec = { '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 = { -- 2.47.3