New submission from Muffinlicious <alicornde...@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 <rep...@bugs.python.org>
<https://bugs.python.org/issue44607>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to