]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-42508: Remove bogus idlelib.pyshell.ModifiedInterpreter attribute (GH-23570)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 30 Nov 2020 17:30:46 +0000 (09:30 -0800)
committerGitHub <noreply@github.com>
Mon, 30 Nov 2020 17:30:46 +0000 (09:30 -0800)
commitf4389bfbb5b9f67db1505dd0003987896eae560b
tree8eaa5a1a0405c5bf12301a6a80b71b1ff8af3bed
parenta5b0c17e0d04931e639c4aa7a908a69cd0b529b3
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.)
(cherry picked from commit e41bfd15dd148627b4f39c2a5837bddd8894d345)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Lib/idlelib/pyshell.py