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

Function tclobjs_to_py

Lib/tkinter/ttk.py:326–332  ·  view source on GitHub ↗

Returns adict with its values converted from Tcl objects to Python objects.

(adict)

Source from the content-addressed store, hash-verified

324 return val
325
326def tclobjs_to_py(adict):
327 """Returns adict with its values converted from Tcl objects to Python
328 objects."""
329 for opt, val in adict.items():
330 adict[opt] = _tclobj_to_py(val)
331
332 return adict
333
334def setup_master(master=None):
335 """If master is not None, itself is returned. If master is None,

Callers

nothing calls this directly

Calls 2

_tclobj_to_pyFunction · 0.85
itemsMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…