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

Method get_children

Lib/tkinter/ttk.py:1200–1205  ·  view source on GitHub ↗

Returns a tuple of children belonging to item. If item is not specified, returns root children.

(self, item=None)

Source from the content-addressed store, hash-verified

1198
1199
1200 def get_children(self, item=None):
1201 """Returns a tuple of children belonging to item.
1202
1203 If item is not specified, returns root children."""
1204 return self.tk.splitlist(
1205 self.tk.call(self._w, "children", item or '') or ())
1206
1207
1208 def set_children(self, item, *newchildren):

Callers 12

find_blockFunction · 0.45
test_annotatedMethod · 0.45
test_symbol_reprMethod · 0.45
test_lambdaMethod · 0.45
test_nested_lambdaMethod · 0.45
test_genexprMethod · 0.45
test_nested_genexprMethod · 0.45
test_bboxMethod · 0.45
test_childrenMethod · 0.45
test_deleteMethod · 0.45
test_detach_reattachMethod · 0.45

Calls 2

splitlistMethod · 0.80
callMethod · 0.45

Tested by 12

find_blockFunction · 0.36
test_annotatedMethod · 0.36
test_symbol_reprMethod · 0.36
test_lambdaMethod · 0.36
test_nested_lambdaMethod · 0.36
test_genexprMethod · 0.36
test_nested_genexprMethod · 0.36
test_bboxMethod · 0.36
test_childrenMethod · 0.36
test_deleteMethod · 0.36
test_detach_reattachMethod · 0.36