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

Method get

Lib/tkinter/__init__.py:3935–3937  ·  view source on GitHub ↗

Return the text from INDEX1 to INDEX2 (not included).

(self, index1, index2=None)

Source from the content-addressed store, hash-verified

3933 return self.edit("undo")
3934
3935 def get(self, index1, index2=None):
3936 """Return the text from INDEX1 to INDEX2 (not included)."""
3937 return self.tk.call(self._w, 'get', index1, index2)
3938 # (Image commands are new in 8.0)
3939
3940 def image_cget(self, index, option):

Callers 3

_setupMethod · 0.45
_setupMethod · 0.45
__init__Method · 0.45

Calls 1

callMethod · 0.45

Tested by

no test coverage detected