This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: turtle.py "dicionary" spelling patch
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: LambertDW, mark.dickinson
Priority: normal Keywords:

Created on 2009-02-17 16:34 by LambertDW, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg82341 - (view) Author: David W. Lambert (LambertDW) Date: 2009-02-17 16:34
x/lib/python3.0$ diff --unified turtle.py.bak turtle.py
--- turtle.py.bak	2009-02-17 11:29:15.000000000 -0500
+++ turtle.py	2009-02-17 11:29:37.000000000 -0500
@@ -2265,7 +2265,7 @@
            "outline"    :   positive number
            "tilt"       :   number
 
-        This dicionary can be used as argument for a subsequent
+        This dictionary can be used as argument for a subsequent
         pen()-call to restore the former pen-state. Moreover one
         or more of these attributes can be provided as keyword-arguments.
         This can be used to set several pen attributes in one statement.
msg82545 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2009-02-20 20:43
Fixed in the trunk in r69816, along with a few other typos.  I've probably 
missed a few.

Thanks!
msg82547 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2009-02-20 20:59
...and merged to 2.6, 3.1 and 3.0 in revisions 69818 through 69822.
History
Date User Action Args
2022-04-11 14:56:45adminsetgithub: 49545
2009-02-20 20:59:44mark.dickinsonsetstatus: open -> closed
resolution: fixed
messages: + msg82547
2009-02-20 20:43:20mark.dickinsonsetnosy: + mark.dickinson
messages: + msg82545
2009-02-17 16:34:19LambertDWcreate