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

Method create_text

Lib/tkinter/__init__.py:3093–3095  ·  view source on GitHub ↗

Create text with coordinates x1,y1.

(self, *args, **kw)

Source from the content-addressed store, hash-verified

3091 return self._create('rectangle', args, kw)
3092
3093 def create_text(self, *args, **kw):
3094 """Create text with coordinates x1,y1."""
3095 return self._create('text', args, kw)
3096
3097 def create_window(self, *args, **kw):
3098 """Create window with coordinates x1,y1,x2,y2."""

Callers 4

_writeMethod · 0.80
update_sidebarMethod · 0.80
drawtextMethod · 0.80
paintMethod · 0.80

Calls 1

_createMethod · 0.95

Tested by 1

paintMethod · 0.64