MCPcopy Index your code
hub / github.com/RustPython/RustPython / 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 4

find_blockFunction · 0.45
test_annotatedMethod · 0.45
test_symbol_reprMethod · 0.45

Calls 1

callMethod · 0.45

Tested by 4

find_blockFunction · 0.36
test_annotatedMethod · 0.36
test_symbol_reprMethod · 0.36