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 Muffinlicious
Recipients Muffinlicious
Date 2021-07-12.06:48:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1626072536.55.0.653021323155.issue44607@roundup.psfhosted.org>
In-reply-to
Content
I use turtle pretty often in a teaching setting. It's extremely common that I'll define the following function at the top of my code:

def teleport(x, y):
    turtle.penup()
    turtle.setpos(x, y)
    turtle.pendown()

Shouldn't this sort of method already exist within the turtle class?
History
Date User Action Args
2021-07-12 06:48:56Muffinlicioussetrecipients: + Muffinlicious
2021-07-12 06:48:56Muffinlicioussetmessageid: <1626072536.55.0.653021323155.issue44607@roundup.psfhosted.org>
2021-07-12 06:48:56Muffinliciouslinkissue44607 messages
2021-07-12 06:48:56Muffinliciouscreate