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

Method winfo_ismapped

Lib/tkinter/__init__.py:1260–1263  ·  view source on GitHub ↗

Return true if this widget is mapped.

(self)

Source from the content-addressed store, hash-verified

1258 return self.tk.splitlist(self.tk.call(args))
1259
1260 def winfo_ismapped(self):
1261 """Return true if this widget is mapped."""
1262 return self.tk.getint(
1263 self.tk.call('winfo', 'ismapped', self._w))
1264
1265 def winfo_manager(self):
1266 """Return the window manager name for this widget."""

Callers 1

_place_windowFunction · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected