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

Method get

Lib/tkinter/__init__.py:4017–4019  ·  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

4015 return self.edit("undo")
4016
4017 def get(self, index1, index2=None):
4018 """Return the text from INDEX1 to INDEX2 (not included)."""
4019 return self.tk.call(self._w, 'get', index1, index2)
4020 # (Image commands are new in 8.0)
4021
4022 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