Returns adict with its values converted from Tcl objects to Python objects.
(adict)
| 324 | return val |
| 325 | |
| 326 | def 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 | |
| 334 | def setup_master(master=None): |
| 335 | """If master is not None, itself is returned. If master is None, |
nothing calls this directly
no test coverage detected
searching dependent graphs…