commit | 6b87f117caba3a6af28f0d0afb05515ae8997620 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Tue Nov 24 14:27:02 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Tue Nov 24 14:27:02 2009 +0000 |
tree | 73b2396c2562f2c64355df5cad7a3771b5360bd8 | |
parent | 9a03f2fd03278d2c12dfe253de1bbed7c0c9c506 [diff] [blame] |
Fix some documentation examples involving the repr of a float.
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 759997a..32650a7 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst
@@ -875,7 +875,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)