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

Method window_create

Lib/tkinter/__init__.py:4271–4275  ·  view source on GitHub ↗

Create a window at INDEX.

(self, index, cnf={}, **kw)

Source from the content-addressed store, hash-verified

4269 window_config = window_configure
4270
4271 def window_create(self, index, cnf={}, **kw):
4272 """Create a window at INDEX."""
4273 self.tk.call(
4274 (self._w, 'window', 'create', index)
4275 + self._options(cnf, kw))
4276
4277 def window_names(self):
4278 """Return all names of embedded windows in this widget."""

Callers 4

mywriteMethod · 0.80
squeeze_current_textMethod · 0.80
test_expandMethod · 0.80

Calls 2

callMethod · 0.45
_optionsMethod · 0.45

Tested by 2

test_expandMethod · 0.64