Searched refs:unbind_class (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Lib/idlelib/ |
D | macosx.py | 249 root.unbind_class('Text', '<B2>') 250 root.unbind_class('Text', '<B2-Motion>') 251 root.unbind_class('Text', '<<PasteSelection>>')
|
/external/python/cpython3/Lib/test/test_tkinter/ |
D | test_misc.py | 947 unbind_class = self.root.unbind_class 951 self.addCleanup(unbind_class, 'Test', event) 971 unbind_class = self.root.unbind_class 974 self.addCleanup(unbind_class, 'Test', event) 981 self.assertRaises(TypeError, unbind_class) 982 self.assertRaises(TypeError, unbind_class, 'Test') 983 unbind_class('Test', event) 989 unbind_class('Test', event) # idempotent 994 unbind_class = self.root.unbind_class 997 self.addCleanup(unbind_class, 'Test', event) [all …]
|
/external/python/cpython3/Lib/tkinter/ |
D | __init__.py | 1592 def unbind_class(self, className, sequence): member in Misc
|