diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-14 03:11:06 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-14 03:11:06 (GMT) |
commit | 4e5112867ce69d29f36f7c441bf63f99b9835b0d (patch) | |
tree | f0b5c9b9d7352789178792bf910d9fdbc180c8e6 /Doc/library/turtle.rst | |
parent | a10a2e862c4de268c31829edcf14f83909ca74d3 (diff) | |
download | cpython-4e5112867ce69d29f36f7c441bf63f99b9835b0d.zip cpython-4e5112867ce69d29f36f7c441bf63f99b9835b0d.tar.gz cpython-4e5112867ce69d29f36f7c441bf63f99b9835b0d.tar.bz2 |
#7888: fix deprecation on the wrong method.
Diffstat (limited to 'Doc/library/turtle.rst')
-rw-r--r-- | Doc/library/turtle.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 232305c..5f9de57 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -1223,6 +1223,8 @@ Appearance >>> turtle.settiltangle(-45) >>> turtle.fd(50) + .. deprecated:: 3.1 + .. function:: tiltangle(angle=None) @@ -1236,8 +1238,6 @@ Appearance between the orientation of the turtleshape and the heading of the turtle (its direction of movement). - Deprecated since Python 3.1 - .. doctest:: >>> turtle.reset() |