MCPcopy Index your code
hub / github.com/python/cpython / _goto

Method _goto

Lib/turtle.py:1673–1675  ·  view source on GitHub ↗

move turtle to position end.

(self, end)

Source from the content-addressed store, hash-verified

1671 self._orient = self._orient.rotate(angle)
1672
1673 def _goto(self, end):
1674 """move turtle to position end."""
1675 self._position = end
1676
1677 def teleport(self, x=None, y=None, *, fill_gap: bool = False) -> None:
1678 """To be overwritten by child class RawTurtle.

Callers 4

_goMethod · 0.95
gotoMethod · 0.95
setxMethod · 0.95
setyMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected