(a, b, /, c, d, *args, e, f, **kwargs)
| 74 | |
| 75 | |
| 76 | def spam_args_attrs_and_builtins(a, b, /, c, d, *args, e, f, **kwargs): |
| 77 | if args.__len__() > 2: |
| 78 | return None |
| 79 | return a, b, c, d, e, f, args, kwargs |
| 80 | |
| 81 | |
| 82 | def spam_returns_arg(x): |
nothing calls this directly
no test coverage detected
searching dependent graphs…