summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-10-29 17:16:49 +0000
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-10-29 17:16:49 +0000
commit3cdfb123606fc1eb0af10552488ccec13a781bd0 (patch)
tree8e25f688f79d2d3d4c0398976d59acf3b264301a
parent9f62d1c5dda72967de0af002428ccdcb9f8de6de (diff)
downloadcpython-git-3cdfb123606fc1eb0af10552488ccec13a781bd0.tar.gz
Issue 7061: Explained 'gon'
-rw-r--r--Doc/library/turtle.rst6
-rw-r--r--Lib/turtle.py5
2 files changed, 9 insertions, 2 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst
index 08fb7a8e0c..9b5c3c0593 100644
--- a/Doc/library/turtle.rst
+++ b/Doc/library/turtle.rst
@@ -714,7 +714,10 @@ Settings for measurement
>>> turtle.left(90)
>>> turtle.heading()
90.0
- >>> 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.0
>>> turtle.degrees(360)
@@ -1511,6 +1514,7 @@ Window control
:param args: a color string or three numbers in the range 0..colormode or a
3-tuple of such numbers
+
Set or return background color of the TurtleScreen.
.. doctest::
diff --git a/Lib/turtle.py b/Lib/turtle.py
index 18d9a565d4..5e55f09d18 100644
--- a/Lib/turtle.py
+++ b/Lib/turtle.py
@@ -1575,7 +1575,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