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

Method winfo_pixels

Lib/tkinter/__init__.py:1285–1288  ·  view source on GitHub ↗

Rounded integer value of winfo_fpixels.

(self, number)

Source from the content-addressed store, hash-verified

1283 return self.tk.call(args)
1284
1285 def winfo_pixels(self, number):
1286 """Rounded integer value of winfo_fpixels."""
1287 return self.tk.getint(
1288 self.tk.call('winfo', 'pixels', self._w, number))
1289
1290 def winfo_pointerx(self):
1291 """Return the x coordinate of the pointer on the root window."""

Callers

nothing calls this directly

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected