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

Method insert

Lib/tkinter/__init__.py:3352–3354  ·  view source on GitHub ↗

Insert STRING at INDEX.

(self, index, string)

Source from the content-addressed store, hash-verified

3350 self._w, 'index', index))
3351
3352 def insert(self, index, string):
3353 """Insert STRING at INDEX."""
3354 self.tk.call(self._w, 'insert', index, string)
3355
3356 def scan_mark(self, x):
3357 """Remember the current X, Y coordinates."""

Callers 2

test_embedded_nullMethod · 0.95
load_dictMethod · 0.95

Calls 1

callMethod · 0.45

Tested by 1

test_embedded_nullMethod · 0.76