(func, *a, **kw)
| 196 | # Decorator called with arguments (@foo('bar')) |
| 197 | name = arg |
| 198 | def mark(func, *a, **kw): |
| 199 | record_magic(magics, magic_kind, name, func.__name__) |
| 200 | return decorator(call, func) |
| 201 | retval = mark |
| 202 | else: |
| 203 | raise TypeError("Decorator can only be called with " |
nothing calls this directly
no test coverage detected