MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / pages

Method pages

tools/python-3.11.9-amd64/Lib/tkinter/tix.py:1116–1122  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1114 return self.subwidget(name)
1115
1116 def pages(self):
1117 # Can't call subwidgets_all directly because we don't want .nbframe
1118 names = self.tk.splitlist(self.tk.call(self._w, 'pages'))
1119 ret = []
1120 for x in names:
1121 ret.append(self.subwidget(x))
1122 return ret
1123
1124 def raise_page(self, name): # raise is a python keyword
1125 self.tk.call(self._w, 'raise', name)

Callers

nothing calls this directly

Calls 3

callMethod · 0.80
subwidgetMethod · 0.80
appendMethod · 0.45

Tested by

no test coverage detected