]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-42508: Remove bogus idlelib.pyshell.ModifiedInterpreter attribute (GH-23570)
authorTerry Jan Reedy <tjreedy@udel.edu>
Mon, 30 Nov 2020 17:09:43 +0000 (12:09 -0500)
committerGitHub <noreply@github.com>
Mon, 30 Nov 2020 17:09:43 +0000 (12:09 -0500)
commite41bfd15dd148627b4f39c2a5837bddd8894d345
treeb39e8090893b8c6dee121a78213b63783fa0c08b
parent0be9ce305ff2b9e13ddcf15af8cfe28786afb36a
bpo-42508: Remove bogus idlelib.pyshell.ModifiedInterpreter attribute (GH-23570)

restart_subprocess is a method of self, the pyshell.InteractiveInterpreter instance. The latter does not have an interp attribute redundantly referring to itself. (The PyShell instance does have an interp attribute, referring to the InteractiveInterpreter instance.)
Lib/idlelib/pyshell.py