(arg, *, kwarg='test', **kw)
| 1 | # Bug in Python 3.6 and 3.7 was getting comma before **kw |
| 2 | |
| 3 | def fn(arg, *, kwarg='test', **kw): |
| 4 | assert arg == 1 |
| 5 | assert kwarg == 'testing' |
| 6 | assert kw['foo'] == 'bar' |
| 7 | |
| 8 | |
| 9 | fn(1, kwarg='testing', foo='bar') |
no outgoing calls
no test coverage detected