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

Method pages

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

Source from the content-addressed store, hash-verified

1160 return self.subwidget(name)
1161
1162 def pages(self):
1163 # Can't call subwidgets_all directly because we don't want .nbframe
1164 names = self.tk.splitlist(self.tk.call(self._w, 'pages'))
1165 ret = []
1166 for x in names:
1167 ret.append(self.subwidget(x))
1168 return ret
1169
1170 def raise_page(self, name): # raise is a python keyword
1171 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