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

Method create_line

Lib/tkinter/__init__.py:3077–3079  ·  view source on GitHub ↗

Create line with coordinates x1,y1,...,xn,yn.

(self, *args, **kw)

Source from the content-addressed store, hash-verified

3075 return self._create('image', args, kw)
3076
3077 def create_line(self, *args, **kw):
3078 """Create line with coordinates x1,y1,...,xn,yn."""
3079 return self._create('line', args, kw)
3080
3081 def create_oval(self, *args, **kw):
3082 """Create oval with coordinates x1,y1,x2,y2."""

Callers 4

_createlineMethod · 0.80
test_create_lineMethod · 0.80
test_coordsMethod · 0.80
drawMethod · 0.80

Calls 1

_createMethod · 0.95

Tested by 2

test_create_lineMethod · 0.64
test_coordsMethod · 0.64