summaryrefslogtreecommitdiff
path: root/Lib/turtledemo
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-10-09 18:44:32 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2014-10-09 18:44:32 -0400
commit70ae5f9e9cfb25b7945a748edf72706ed1e48558 (patch)
tree84542141063bf30934d2fed3256b295c1345819b /Lib/turtledemo
parent111cac9352479b79491395adc6b67603d9afc225 (diff)
downloadcpython-70ae5f9e9cfb25b7945a748edf72706ed1e48558.tar.gz
De-'colour'ize stdlib except for idlelib.configDialog.
Tweak docstrigs and comments in affected functions in idlelib.configHandler.
Diffstat (limited to 'Lib/turtledemo')
-rwxr-xr-xLib/turtledemo/__main__.py2
-rw-r--r--Lib/turtledemo/chaos.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/Lib/turtledemo/__main__.py b/Lib/turtledemo/__main__.py
index 4b6e3892cf..6280c8497b 100755
--- a/Lib/turtledemo/__main__.py
+++ b/Lib/turtledemo/__main__.py
@@ -14,7 +14,7 @@
(1) How to use the demo viewer.
Select a demoscript from the example menu.
- The (syntax coloured) source code appears in the left
+ The (syntax colored) source code appears in the left
source code window. IT CANNOT BE EDITED, but ONLY VIEWED!
The demo viewer windows can be resized. The divider between text
diff --git a/Lib/turtledemo/chaos.py b/Lib/turtledemo/chaos.py
index d4656f8914..6a45d0d807 100644
--- a/Lib/turtledemo/chaos.py
+++ b/Lib/turtledemo/chaos.py
@@ -29,8 +29,8 @@ def coosys():
line(-1, 0, N+1, 0)
line(0, -0.1, 0, 1.1)
-def plot(fun, start, colour):
- pencolor(colour)
+def plot(fun, start, color):
+ pencolor(color)
x = start
jumpto(0, x)
pendown()