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 veky
Recipients Muffinlicious, veky
Date 2021-07-12.09:37:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1626082671.07.0.950041260261.issue44607@roundup.psfhosted.org>
In-reply-to
Content
In my view, turtle is a great tool for exploring _polar_ coordinates. If you set emphasis to rectangular coordinates, there are many tools that are much better.

Second, your function might be ok for you, but it is really not suitable for standard library. Probably you meant something like (a method)

    def teleport(self, *args):
        restore = self.isdown()
        self.penup()
        self.setpos(*args)
        if restore: self.pendown()
History
Date User Action Args
2021-07-12 09:37:51vekysetrecipients: + veky, Muffinlicious
2021-07-12 09:37:51vekysetmessageid: <1626082671.07.0.950041260261.issue44607@roundup.psfhosted.org>
2021-07-12 09:37:51vekylinkissue44607 messages
2021-07-12 09:37:50vekycreate