From: Guido van Rossum Date: Fri, 27 Dec 1996 15:40:31 +0000 (+0000) Subject: Fix bogus implementation of Group.bind(). X-Git-Tag: v1.5a1~642 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=178ff353e88c41f6f3d26f3f6e4d9772a5dc7713;p=python Fix bogus implementation of Group.bind(). Added unbind() to CanvasItem and Group classes. --- diff --git a/Lib/lib-tk/Canvas.py b/Lib/lib-tk/Canvas.py index 6eccd4d769..ad0cc56689 100644 --- a/Lib/lib-tk/Canvas.py +++ b/Lib/lib-tk/Canvas.py @@ -43,6 +43,8 @@ class CanvasItem: return (x1, y1), (x2, y2) def bind(self, sequence=None, command=None): return self.canvas.tag_bind(self.id, sequence, command) + def unbind(self, sequence): + self.canvas.tag_bind(self.id, sequence, '') def config(self, cnf={}, **kw): return self.canvas.itemconfig(self.id, _cnfmerge((cnf, kw))) def coords(self, pts = ()): @@ -140,8 +142,10 @@ class Group: self._do('addtag', 'withtag', tagOrId) def bbox(self): return self._getints(self._do('bbox')) - def bind(self, sequence=None, command=None): # XXX args? - return self._do('bind', sequence, command) + def bind(self, sequence=None, command=None): + return self.canvas.tag_bind(self.id, sequence, command) + def unbind(self, sequence): + self.canvas.tag_bind(self.id, sequence, '') def coords(self, *pts): return self._do('coords', pts) def dchars(self, first, last=None): diff --git a/Lib/tkinter/Canvas.py b/Lib/tkinter/Canvas.py index 6eccd4d769..ad0cc56689 100755 --- a/Lib/tkinter/Canvas.py +++ b/Lib/tkinter/Canvas.py @@ -43,6 +43,8 @@ class CanvasItem: return (x1, y1), (x2, y2) def bind(self, sequence=None, command=None): return self.canvas.tag_bind(self.id, sequence, command) + def unbind(self, sequence): + self.canvas.tag_bind(self.id, sequence, '') def config(self, cnf={}, **kw): return self.canvas.itemconfig(self.id, _cnfmerge((cnf, kw))) def coords(self, pts = ()): @@ -140,8 +142,10 @@ class Group: self._do('addtag', 'withtag', tagOrId) def bbox(self): return self._getints(self._do('bbox')) - def bind(self, sequence=None, command=None): # XXX args? - return self._do('bind', sequence, command) + def bind(self, sequence=None, command=None): + return self.canvas.tag_bind(self.id, sequence, command) + def unbind(self, sequence): + self.canvas.tag_bind(self.id, sequence, '') def coords(self, *pts): return self._do('coords', pts) def dchars(self, first, last=None):