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

Method winfo_atom

Lib/tkinter/__init__.py:1199–1202  ·  view source on GitHub ↗

Return integer which represents atom NAME.

(self, name, displayof=0)

Source from the content-addressed store, hash-verified

1197 return _parse_version(patchlevel)
1198
1199 def winfo_atom(self, name, displayof=0):
1200 """Return integer which represents atom NAME."""
1201 args = ('winfo', 'atom') + self._displayof(displayof) + (name,)
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."""

Callers

nothing calls this directly

Calls 3

_displayofMethod · 0.95
getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected