]> 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 22:36:06 +0000 (14:36 -0800)
committerGitHub <noreply@github.com>
Mon, 30 Nov 2020 22:36:06 +0000 (17:36 -0500)
commitff51e5ec26168574761e128cc607b879d4d5aa50
treed31a0d8da45f6eacf1729047f3a959463d0945f5
parentb2652f2d7e1f3b868e9bec6669b3f3f905257991
bpo-42508: Remove bogus idlelib.pyshell.ModifiedInterpreter attribute (GH-23570) (GH-23571)

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