mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
Fix bogus implementation of Group.bind().
Added unbind() to CanvasItem and Group classes.
This commit is contained in:
parent
8371013f9a
commit
178ff353e8
2 changed files with 12 additions and 4 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue