[Python-checkins] r81502 - python/trunk/Demo/turtle/turtleDemo.py

georg.brandl python-checkins at python.org
Mon May 24 23:37:54 CEST 2010


Author: georg.brandl
Date: Mon May 24 23:37:54 2010
New Revision: 81502

Log:
#8616: update module name

Modified:
   python/trunk/Demo/turtle/turtleDemo.py

Modified: python/trunk/Demo/turtle/turtleDemo.py
==============================================================================
--- python/trunk/Demo/turtle/turtleDemo.py	(original)
+++ python/trunk/Demo/turtle/turtleDemo.py	Mon May 24 23:37:54 2010
@@ -212,7 +212,7 @@
             self.text.delete("1.0", "end")
             self.text.insert("1.0",chars)
             direc, fname = os.path.split(filename)
-            self.root.title(fname[6:-3]+" - an xturtle example")
+            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,


More information about the Python-checkins mailing list