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

Method selection_present

Lib/tkinter/__init__.py:3303–3307  ·  view source on GitHub ↗

Return True if there are characters selected in the entry, False otherwise.

(self)

Source from the content-addressed store, hash-verified

3301 select_from = selection_from
3302
3303 def selection_present(self):
3304 """Return True if there are characters selected in the entry, False
3305 otherwise."""
3306 return self.tk.getboolean(
3307 self.tk.call(self._w, 'selection', 'present'))
3308
3309 select_present = selection_present
3310

Callers

nothing calls this directly

Calls 2

getbooleanMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected