()
| 876 | return None |
| 877 | else: |
| 878 | def callit(): |
| 879 | try: |
| 880 | func(*args, **kw) |
| 881 | finally: |
| 882 | try: |
| 883 | self.deletecommand(name) |
| 884 | except TclError: |
| 885 | pass |
| 886 | try: |
| 887 | callit.__name__ = func.__name__ |
| 888 | except AttributeError: |
nothing calls this directly
no test coverage detected