(*args, **kwargs)
| 50 | |
| 51 | def test_keyword_args_and_generalized_unpacking(): |
| 52 | def f(*args, **kwargs): |
| 53 | return args, kwargs |
| 54 | |
| 55 | assert m.test_tuple_unpacking(f) == (("positional", 1, 2, 3, 4, 5, 6), {}) |
| 56 | assert m.test_dict_unpacking(f) == ( |
no outgoing calls
no test coverage detected