diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2021-11-19 18:55:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-19 18:55:40 (GMT) |
commit | 9501e8d3a339c5a9217b7d90275d2a8c8cba5d13 (patch) | |
tree | d6313f390094352ab639d7c011459e975465a67f | |
parent | 2a630e716e488ac420d308736568829f76e388a3 (diff) | |
download | cpython-9501e8d3a339c5a9217b7d90275d2a8c8cba5d13.zip cpython-9501e8d3a339c5a9217b7d90275d2a8c8cba5d13.tar.gz cpython-9501e8d3a339c5a9217b7d90275d2a8c8cba5d13.tar.bz2 |
bpo-45837: Note tiltangle is not deprecated, it's really settiltangle (GH-29629)
-rw-r--r-- | Lib/turtle.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/turtle.py b/Lib/turtle.py index 7e36c2c..f3b320b 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -2877,7 +2877,8 @@ class RawTurtle(TPen, TNavigator): between the orientation of the turtleshape and the heading of the turtle (its direction of movement). - Deprecated since Python 3.1 + (Incorrectly marked as deprecated since Python 3.1, it is really + settiltangle that is deprecated.) Examples (for a Turtle instance named turtle): >>> turtle.shape("circle") |