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

Method winfo_ismapped

Lib/tkinter/__init__.py:1278–1281  ·  view source on GitHub ↗

Return true if this widget is mapped.

(self)

Source from the content-addressed store, hash-verified

1276 return self.tk.splitlist(self.tk.call(args))
1277
1278 def winfo_ismapped(self):
1279 """Return true if this widget is mapped."""
1280 return self.tk.getint(
1281 self.tk.call('winfo', 'ismapped', self._w))
1282
1283 def winfo_manager(self):
1284 """Return the window manager name for this widget."""

Callers 5

_place_windowFunction · 0.80
test_place_forgetMethod · 0.80
test_callbackMethod · 0.80
mock_wait_windowMethod · 0.80
test_callbackMethod · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by 4

test_place_forgetMethod · 0.64
test_callbackMethod · 0.64
mock_wait_windowMethod · 0.64
test_callbackMethod · 0.64