(c=c)
| 1518 | @staticmethod |
| 1519 | def tricky(a, b, /, x, y, z=True, *args, c, d, e=[], **kwds): |
| 1520 | def f(c=c): |
| 1521 | print(a, b, x, y, z, c, d, e, f) |
| 1522 | yield a, b, x, y, z, c, d, e, f |
| 1523 | |
| 1524 | code_info_tricky = """\ |
no outgoing calls
no test coverage detected