[Python-checkins] r78181 - in python/branches/release31-maint: Doc/library/turtle.rst

ezio.melotti python-checkins at python.org
Sun Feb 14 04:12:04 CET 2010


Author: ezio.melotti
Date: Sun Feb 14 04:12:04 2010
New Revision: 78181

Log:
Merged revisions 78180 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r78180 | ezio.melotti | 2010-02-14 05:11:06 +0200 (Sun, 14 Feb 2010) | 1 line
  
  #7888: fix deprecation on the wrong method.
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Doc/library/turtle.rst

Modified: python/branches/release31-maint/Doc/library/turtle.rst
==============================================================================
--- python/branches/release31-maint/Doc/library/turtle.rst	(original)
+++ python/branches/release31-maint/Doc/library/turtle.rst	Sun Feb 14 04:12:04 2010
@@ -1223,6 +1223,8 @@
       >>> turtle.settiltangle(-45)
       >>> turtle.fd(50)
 
+   .. deprecated:: 3.1
+
 
 .. function:: tiltangle(angle=None)
 
@@ -1236,8 +1238,6 @@
    between the orientation of the turtleshape and the heading of the
    turtle (its direction of movement).
 
-   Deprecated since Python 3.1
-
    .. doctest::
 
       >>> turtle.reset()


More information about the Python-checkins mailing list