MCPcopy Index your code
hub / github.com/RustPython/RustPython / create_rectangle

Method create_rectangle

Lib/tkinter/__init__.py:3006–3008  ·  view source on GitHub ↗

Create rectangle with coordinates x1,y1,x2,y2.

(self, *args, **kw)

Source from the content-addressed store, hash-verified

3004 return self._create('polygon', args, kw)
3005
3006 def create_rectangle(self, *args, **kw):
3007 """Create rectangle with coordinates x1,y1,x2,y2."""
3008 return self._create('rectangle', args, kw)
3009
3010 def create_text(self, *args, **kw):
3011 """Create text with coordinates x1,y1."""

Callers 1

dnd_enterMethod · 0.80

Calls 1

_createMethod · 0.95

Tested by

no test coverage detected