(self, root)
| 269 | class Tester: |
| 270 | |
| 271 | def __init__(self, root): |
| 272 | self.top = tkinter.Toplevel(root) |
| 273 | self.canvas = tkinter.Canvas(self.top, width=100, height=100) |
| 274 | self.canvas.pack(fill="both", expand=1) |
| 275 | self.canvas.dnd_accept = self.dnd_accept |
| 276 | |
| 277 | def dnd_accept(self, source, event): |
| 278 | return self |