(special_name)
| 635 | def special_method(decorated_function): |
| 636 | def wrap1(*args, **kwargs): |
| 637 | def wrap2(special_name): |
| 638 | return decorated_function(special_name, *args, **kwargs) |
| 639 | return wrap2 |
| 640 | return wrap1 |
| 641 |
nothing calls this directly
no outgoing calls
no test coverage detected