[issue44607] Teleport method for turtle class

Muffinlicious report at bugs.python.org
Mon Jul 12 02:48:56 EDT 2021


New submission from Muffinlicious <alicornderpy at gmail.com>:

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?

----------
components: Tkinter
messages: 397286
nosy: Muffinlicious
priority: normal
severity: normal
status: open
title: Teleport method for turtle class
type: enhancement
versions: Python 3.11

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue44607>
_______________________________________


More information about the Python-bugs-list mailing list