Merged revisions 74764 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74764 | ezio.melotti | 2009-09-13 10:54:02 +0300 (Sun, 13 Sep 2009) | 1 line
fixed more examples that were using u"", print without () and unicode/str instead of str/bytes
........
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst
index b7f2853..d70550a 100644
--- a/Doc/library/turtle.rst
+++ b/Doc/library/turtle.rst
@@ -645,7 +645,7 @@
>>> turtle.forward(100)
>>> turtle.pos()
(64.28,76.60)
- >>> print turtle.xcor()
+ >>> print(turtle.xcor())
64.2787609687
@@ -658,9 +658,9 @@
>>> turtle.home()
>>> turtle.left(60)
>>> turtle.forward(100)
- >>> print turtle.pos()
+ >>> print(turtle.pos())
(50.00,86.60)
- >>> print turtle.ycor()
+ >>> print(turtle.ycor())
86.6025403784