From 39f8f7d7d13e061e7817f5572d56d156913449a2 Mon Sep 17 00:00:00 2001 From: Tian Gao Date: Sat, 10 May 2025 11:10:58 -0700 Subject: [PATCH] Add classmethod to setUpClass in test_pdb (GH-133840) (cherry picked from commit 4f2f780d534962261dcc7813e50d0dcb413a1d3c) Co-authored-by: Tian Gao --- Lib/test/test_pdb.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index 68c2b508fa64dc..6b74e21ad73d1a 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -4749,7 +4749,9 @@ def test_return_from_inline_mode_to_REPL(self): @support.force_not_colorized_test_class @support.requires_subprocess() class PdbTestReadline(unittest.TestCase): - def setUpClass(): + + @classmethod + def setUpClass(cls): # Ensure that the readline module is loaded # If this fails, the test is skipped because SkipTest will be raised readline = import_module('readline')