Synonym for pack_content().
(self)
| 1912 | content = pack_content |
| 1913 | |
| 1914 | def pack_slaves(self): |
| 1915 | """Synonym for pack_content().""" |
| 1916 | return [self._nametowidget(x) for x in |
| 1917 | self.tk.splitlist( |
| 1918 | self.tk.call('pack', 'slaves', self._w))] |
| 1919 | |
| 1920 | slaves = pack_slaves |
| 1921 |