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

Method create_text

Lib/tkinter/__init__.py:3010–3012  ·  view source on GitHub ↗

Create text with coordinates x1,y1.

(self, *args, **kw)

Source from the content-addressed store, hash-verified

3008 return self._create('rectangle', args, kw)
3009
3010 def create_text(self, *args, **kw):
3011 """Create text with coordinates x1,y1."""
3012 return self._create('text', args, kw)
3013
3014 def create_window(self, *args, **kw):
3015 """Create window with coordinates x1,y1,x2,y2."""

Callers

nothing calls this directly

Calls 1

_createMethod · 0.95

Tested by

no test coverage detected