From: Terry Jan Reedy Date: Wed, 3 Sep 2014 23:29:11 +0000 (-0400) Subject: Issue #22051: remove unneeded reload that allowed bad code. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d85a9ef376ea3448fdb45e77859a91c6f7d07102;p=python Issue #22051: remove unneeded reload that allowed bad code. --- diff --git a/Demo/turtle/turtleDemo.py b/Demo/turtle/turtleDemo.py index 5ec980ea2b..d284042a36 100755 --- a/Demo/turtle/turtleDemo.py +++ b/Demo/turtle/turtleDemo.py @@ -210,7 +210,6 @@ class DemoWindow(object): direc, fname = os.path.split(filename) self.root.title(fname[6:-3]+" - a Python turtle graphics example") self.module = __import__(fname[:-3]) - reload(self.module) self.configGUI(NORMAL, NORMAL, DISABLED, DISABLED, "Press start button", "red") self.state = READY