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

Method create_window

Lib/tkinter/__init__.py:3097–3099  ·  view source on GitHub ↗

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

(self, *args, **kw)

Source from the content-addressed store, hash-verified

3095 return self._create('text', args, kw)
3096
3097 def create_window(self, *args, **kw):
3098 """Create window with coordinates x1,y1,x2,y2."""
3099 return self._create('window', args, kw)
3100
3101 def dchars(self, *args):
3102 """Delete characters of text items identified by tag or id in ARGS (possibly

Callers 4

__init__Method · 0.95
__init__Method · 0.95
attachMethod · 0.80
drawtextMethod · 0.80

Calls 1

_createMethod · 0.95

Tested by

no test coverage detected