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

Method winfo_atomname

Lib/tkinter/__init__.py:1186–1190  ·  view source on GitHub ↗

Return name of atom with identifier ID.

(self, id, displayof=0)

Source from the content-addressed store, hash-verified

1184 return self.tk.getint(self.tk.call(args))
1185
1186 def winfo_atomname(self, id, displayof=0):
1187 """Return name of atom with identifier ID."""
1188 args = ('winfo', 'atomname') \
1189 + self._displayof(displayof) + (id,)
1190 return self.tk.call(args)
1191
1192 def winfo_cells(self):
1193 """Return number of cells in the colormap for this widget."""

Callers

nothing calls this directly

Calls 2

_displayofMethod · 0.95
callMethod · 0.45

Tested by

no test coverage detected