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

Method winfo_pointery

Lib/tkinter/__init__.py:1318–1321  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

1316 self.tk.call('winfo', 'pointerxy', self._w))
1317
1318 def winfo_pointery(self):
1319 """Return the y coordinate of the pointer on the root window."""
1320 return self.tk.getint(
1321 self.tk.call('winfo', 'pointery', self._w))
1322
1323 def winfo_reqheight(self):
1324 """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