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

Method _update_data

Lib/turtle.py:2729–2735  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2727 self._update()
2728
2729 def _update_data(self):
2730 self.screen._incrementudc()
2731 if self.screen._updatecounter != 0:
2732 return
2733 if len(self.currentLine)>1:
2734 self.screen._drawline(self.currentLineItem, self.currentLine,
2735 self._pencolor, self._pensize)
2736
2737 def _update(self):
2738 """Perform a Turtle-data update.

Callers 2

_updateMethod · 0.95
updateMethod · 0.80

Calls 2

_incrementudcMethod · 0.80
_drawlineMethod · 0.80

Tested by

no test coverage detected