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

Method create_window

Lib/tkinter/__init__.py:3014–3016  ·  view source on GitHub ↗

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

(self, *args, **kw)

Source from the content-addressed store, hash-verified

3012 return self._create('text', args, kw)
3013
3014 def create_window(self, *args, **kw):
3015 """Create window with coordinates x1,y1,x2,y2."""
3016 return self._create('window', args, kw)
3017
3018 def dchars(self, *args):
3019 """Delete characters of text items identified by tag or id in ARGS (possibly

Callers 1

attachMethod · 0.80

Calls 1

_createMethod · 0.95

Tested by

no test coverage detected