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

Method winfo_atom

Lib/tkinter/__init__.py:1181–1184  ·  view source on GitHub ↗

Return integer which represents atom NAME.

(self, name, displayof=0)

Source from the content-addressed store, hash-verified

1179 return _parse_version(patchlevel)
1180
1181 def winfo_atom(self, name, displayof=0):
1182 """Return integer which represents atom NAME."""
1183 args = ('winfo', 'atom') + self._displayof(displayof) + (name,)
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."""

Callers

nothing calls this directly

Calls 3

_displayofMethod · 0.95
getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected