()
| 253 | |
| 254 | |
| 255 | def test_calldef_none(): |
| 256 | # We should ignore __call__ for all of these. |
| 257 | for obj in [support_function_one, SimpleClass().method, any, str.upper]: |
| 258 | i = inspector.info(obj) |
| 259 | assert i["call_def"] is None |
| 260 | |
| 261 | |
| 262 | def f_kwarg(pos, *, kwonly): |
nothing calls this directly
no test coverage detected
searching dependent graphs…