Vedran Čačić <ved...@gmail.com> added the comment:

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()

----------
nosy: +veky

_______________________________________
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