From 8f778f7bb9a8ad80fc06570566ad4de541826178 Mon Sep 17 00:00:00 2001 From: Christian Veenhuis <124370897+ChVeen@users.noreply.github.com> Date: Wed, 4 Jun 2025 06:57:31 +0200 Subject: [PATCH] gh-135103: Remove an unused local variable in Lib/code.py (GH-135104) remove unused local variable --- Lib/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/code.py b/Lib/code.py index b134886dc2..f7e275d880 100644 --- a/Lib/code.py +++ b/Lib/code.py @@ -224,7 +224,7 @@ class InteractiveConsole(InteractiveInterpreter): sys.ps1 = ">>> " delete_ps1_after = True try: - _ps2 = sys.ps2 + sys.ps2 delete_ps2_after = False except AttributeError: sys.ps2 = "... "