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

Method winfo_pointery

Lib/tkinter/__init__.py:1300–1303  ·  view source on GitHub ↗

Return the y coordinate of the pointer on the root window.

(self)

Source from the content-addressed store, hash-verified

1298 self.tk.call('winfo', 'pointerxy', self._w))
1299
1300 def winfo_pointery(self):
1301 """Return the y coordinate of the pointer on the root window."""
1302 return self.tk.getint(
1303 self.tk.call('winfo', 'pointery', self._w))
1304
1305 def winfo_reqheight(self):
1306 """Return requested height of this widget."""

Callers

nothing calls this directly

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected