Searched refs:paneconfigure (Results 1 - 6 of 6) sorted by relevance

/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
H A Dtest_widgets.py1012 self.assertRaises(TypeError, p.paneconfigure)
1013 d = p.paneconfigure(b)
1017 self.assertEqual(v, p.paneconfigure(b, k))
1026 p.paneconfigure(b, **{name: value})
1027 self.assertEqual(conv(p.paneconfigure(b, name)[4]), expected)
1032 p.paneconfigure(b, **{name: 'badValue'})
/external/python/cpython3/Lib/tkinter/test/test_tkinter/
H A Dtest_widgets.py1017 self.assertRaises(TypeError, p.paneconfigure)
1018 d = p.paneconfigure(b)
1022 self.assertEqual(v, p.paneconfigure(b, k))
1031 p.paneconfigure(b, **{name: value})
1032 self.assertEqual(conv(p.paneconfigure(b, name)[4]), expected)
1037 p.paneconfigure(b, **{name: 'badValue'})
/external/python/cpython2/Lib/lib-tk/
H A DTkinter.py3648 are the ones accepted by the paneconfigure method.
3726 Option may be any value allowed by the paneconfigure subcommand
3731 def paneconfigure(self, tagOrId, cnf=None, **kw): member in class:PanedWindow
3800 return self._getconfigure(self._w, 'paneconfigure', tagOrId)
3803 self._w, 'paneconfigure', tagOrId, '-'+cnf)
3804 self.tk.call((self._w, 'paneconfigure', tagOrId) +
3806 paneconfig = paneconfigure
H A DTix.py1227 # add delete forget panecget paneconfigure panes setsize
1245 def paneconfigure(self, entry, cnf={}, **kw): member in class:PanedWindow
1247 return self._getconfigure(self._w, 'paneconfigure', entry)
1248 self.tk.call(self._w, 'paneconfigure', entry, *self._options(cnf, kw))
/external/python/cpython3/Lib/tkinter/
H A D__init__.py3815 are the ones accepted by the paneconfigure method.
3893 Option may be any value allowed by the paneconfigure subcommand
3898 def paneconfigure(self, tagOrId, cnf=None, **kw): member in class:PanedWindow
3967 return self._getconfigure(self._w, 'paneconfigure', tagOrId)
3970 self._w, 'paneconfigure', tagOrId, '-'+cnf)
3971 self.tk.call((self._w, 'paneconfigure', tagOrId) +
3973 paneconfig = paneconfigure
H A Dtix.py1220 # add delete forget panecget paneconfigure panes setsize
1238 def paneconfigure(self, entry, cnf={}, **kw): member in class:PanedWindow
1240 return self._getconfigure(self._w, 'paneconfigure', entry)
1241 self.tk.call(self._w, 'paneconfigure', entry, *self._options(cnf, kw))

Completed in 221 milliseconds