commit | 5a55b61a2aa15b94d26bbc058ee2b5433178a42e | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Sun Jun 28 20:59:42 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Sun Jun 28 20:59:42 2009 +0000 |
tree | f3271995fbef03c8aa251164de7cf9fb63e6504a | |
parent | 6e6565b64b201952b0497c4915e17ace5cae04a7 [diff] [blame] |
Issue #6354: More fixes for code examples involving the repr of a float.
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 9070107..b7f2853 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst
@@ -881,7 +881,7 @@ >>> tup = (0.2, 0.8, 0.55) >>> turtle.pencolor(tup) >>> turtle.pencolor() - (0.20000000000000001, 0.80000000000000004, 0.5490196078431373) + (0.2, 0.8, 0.5490196078431373) >>> colormode(255) >>> turtle.pencolor() (51, 204, 140)