(source, event)
| 107 | # The factory function |
| 108 | |
| 109 | def dnd_start(source, event): |
| 110 | h = DndHandler(source, event) |
| 111 | if h.root is not None: |
| 112 | return h |
| 113 | else: |
| 114 | return None |
| 115 | |
| 116 | |
| 117 | # The class that does the work |
no test coverage detected
searching dependent graphs…