diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-09 22:44:26 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-09 22:44:26 (GMT) |
commit | 1375538b1a598ba05aa780aed538cfc18be59a7f (patch) | |
tree | 22c5c615faecb827d5104fec00ac8929a0b6cde4 /Demo/turtle | |
parent | a6066ce6b1115b8a8bff3d30848bad0be0863f08 (diff) | |
download | cpython-1375538b1a598ba05aa780aed538cfc18be59a7f.zip cpython-1375538b1a598ba05aa780aed538cfc18be59a7f.tar.gz cpython-1375538b1a598ba05aa780aed538cfc18be59a7f.tar.bz2 |
De-'colour'ize stdlib except for idlelib.configDialog.
Tweak docstrigs and comments in affected functions in idlelib.configHandler.
Diffstat (limited to 'Demo/turtle')
-rw-r--r-- | Demo/turtle/demohelp.txt | 2 | ||||
-rw-r--r-- | Demo/turtle/tdemo_chaos.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Demo/turtle/demohelp.txt b/Demo/turtle/demohelp.txt index 7d13763..a49720b 100644 --- a/Demo/turtle/demohelp.txt +++ b/Demo/turtle/demohelp.txt @@ -15,7 +15,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! - Press START button to start the demo. diff --git a/Demo/turtle/tdemo_chaos.py b/Demo/turtle/tdemo_chaos.py index d4656f8..6a45d0d 100644 --- a/Demo/turtle/tdemo_chaos.py +++ b/Demo/turtle/tdemo_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() |