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

Method _createline

Lib/turtle.py:520–524  ·  view source on GitHub ↗

Create an invisible line item on canvas self.cv)

(self)

Source from the content-addressed store, hash-verified

518 self.cv.tag_raise(polyitem)
519
520 def _createline(self):
521 """Create an invisible line item on canvas self.cv)
522 """
523 return self.cv.create_line(0, 0, 0, 0, fill="", width=2,
524 capstyle = TK.ROUND)
525
526 def _drawline(self, lineitem, coordlist=None,
527 fill=None, width=None, top=False):

Callers 4

__init__Method · 0.80
_clearMethod · 0.80
cloneMethod · 0.80
_newLineMethod · 0.80

Calls 1

create_lineMethod · 0.80

Tested by

no test coverage detected