Searched refs:funcid (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/idlelib/ |
D | multicall.py | 352 def unbind(self, sequence, funcid=None): argument 361 return widget.unbind(self, sequence, funcid)
|
/third_party/python/Lib/tkinter/ |
D | __init__.py | 1369 funcid = self._register(func, self._substitute, 1374 funcid, self._subst_format_str)) 1376 return funcid 1423 def unbind(self, sequence, funcid=None): argument 1427 if funcid: 1428 self.deletecommand(funcid) 2762 def tag_unbind(self, tagOrId, sequence, funcid=None): argument 2766 if funcid: 2767 self.deletecommand(funcid) 3862 def tag_unbind(self, tagName, sequence, funcid=None): argument [all …]
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 775 funcid = self.scale.bind('<<RangeChanged>>', lambda evt: failure.pop())
|