diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-11-05 01:56:24 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-11-05 01:56:24 (GMT) |
commit | ab016d21a6a71bd061e0ff4a3722350950f19644 (patch) | |
tree | dcf75db1745f0bdcb35f5b7cc3f7671650e9f7a0 /Lib/lib-tk | |
parent | 77d9695a7e25a9bcb2552577cc2d8a245cd10775 (diff) | |
download | cpython-ab016d21a6a71bd061e0ff4a3722350950f19644.zip cpython-ab016d21a6a71bd061e0ff4a3722350950f19644.tar.gz cpython-ab016d21a6a71bd061e0ff4a3722350950f19644.tar.bz2 |
Merged revisions 85930 via svnmerge from
http://svn.python.org/projects/python/branches/py3k
........
r85930 | alexander.belopolsky | 2010-10-29 13:16:49 -0400 (Fri, 29 Oct 2010) | 1 line
Issue 7061: Explained 'gon'
........
Diffstat (limited to 'Lib/lib-tk')
-rw-r--r-- | Lib/lib-tk/turtle.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index 90dadf9..23e407d 100644 --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py @@ -1495,7 +1495,10 @@ class TNavigator(object): >>> turtle.left(90) >>> turtle.heading() 90 - >>> turtle.degrees(400.0) # angle measurement in gon + + Change angle measurement unit to grad (also known as gon, + grade, or gradian and equals 1/100-th of the right angle.) + >>> turtle.degrees(400.0) >>> turtle.heading() 100 |