(self)
| 2454 | test(f4) |
| 2455 | |
| 2456 | def test_callable_argspec_fn(self): |
| 2457 | def foo(x, y, **kw): |
| 2458 | pass |
| 2459 | |
| 2460 | eq_( |
| 2461 | get_callable_argspec(foo), |
| 2462 | compat.FullArgSpec(["x", "y"], None, "kw", None, [], None, {}), |
| 2463 | ) |
| 2464 | |
| 2465 | def test_callable_argspec_fn_no_self(self): |
| 2466 | def foo(x, y, **kw): |
nothing calls this directly
no test coverage detected