(function)
| 401 | |
| 402 | |
| 403 | def ident(function): |
| 404 | if hasattr(function, "f_code"): |
| 405 | code = function.f_code |
| 406 | else: |
| 407 | code = function.__code__ |
| 408 | return code.co_firstlineno, code.co_name |
| 409 | |
| 410 | |
| 411 | def protect(f, p): |
no outgoing calls
no test coverage detected
searching dependent graphs…