mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
gh-135103: Remove an unused local variable in Lib/code.py (GH-135104)
remove unused local variable
This commit is contained in:
parent
dba9de731b
commit
8f778f7bb9
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ class InteractiveConsole(InteractiveInterpreter):
|
||||||
sys.ps1 = ">>> "
|
sys.ps1 = ">>> "
|
||||||
delete_ps1_after = True
|
delete_ps1_after = True
|
||||||
try:
|
try:
|
||||||
_ps2 = sys.ps2
|
sys.ps2
|
||||||
delete_ps2_after = False
|
delete_ps2_after = False
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
sys.ps2 = "... "
|
sys.ps2 = "... "
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue