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

Method winfo_atomname

Lib/tkinter/__init__.py:1204–1208  ·  view source on GitHub ↗

Return name of atom with identifier ID.

(self, id, displayof=0)

Source from the content-addressed store, hash-verified

1202 return self.tk.getint(self.tk.call(args))
1203
1204 def winfo_atomname(self, id, displayof=0):
1205 """Return name of atom with identifier ID."""
1206 args = ('winfo', 'atomname') \
1207 + self._displayof(displayof) + (id,)
1208 return self.tk.call(args)
1209
1210 def winfo_cells(self):
1211 """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