This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jggammon
Recipients docs@python, jggammon
Date 2021-10-07.03:12:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1633576337.95.0.961564337357.issue45397@roundup.psfhosted.org>
In-reply-to
Content
In the version 3.10 and 3.11 python turtle doc, the turtle.write line shows font without it's tuple parenthesis. Something change in 3.10 that makes it look like font='Arial' and 8 and 'normal' are 3 separate parameters, when it should be one tuple parameter font=(x,y,z).

Ex. of wrong entry (URL=https://docs.python.org/3.11/library/turtle.html#turtle.write)
line=turtle.write(arg, move=False, align='left', font='Arial', 8, 'normal')

Ex. of correct entry (https://docs.python.org/3.9/library/turtle.html#turtle.write)
line=turtle.write(arg, move=False, align="left", font=("Arial", 8, "normal"))
History
Date User Action Args
2021-10-07 03:12:17jggammonsetrecipients: + jggammon, docs@python
2021-10-07 03:12:17jggammonsetmessageid: <1633576337.95.0.961564337357.issue45397@roundup.psfhosted.org>
2021-10-07 03:12:17jggammonlinkissue45397 messages
2021-10-07 03:12:17jggammoncreate