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

Method insert

Lib/tkinter/__init__.py:3493–3495  ·  view source on GitHub ↗

Insert ELEMENTS at INDEX.

(self, index, *elements)

Source from the content-addressed store, hash-verified

3491 return self.tk.getint(i)
3492
3493 def insert(self, index, *elements):
3494 """Insert ELEMENTS at INDEX."""
3495 self.tk.call((self._w, 'insert', index) + elements)
3496
3497 def nearest(self, y):
3498 """Get index of item which is nearest to y coordinate Y."""

Callers 1

show_windowMethod · 0.95

Calls 1

callMethod · 0.45

Tested by

no test coverage detected