(a=1, b=2)
| 1683 | # Fodder for instruction introspection tests |
| 1684 | # Editing any of these may require recalculating the expected output |
| 1685 | def outer(a=1, b=2): |
| 1686 | def f(c=3, d=4): |
| 1687 | def inner(e=5, f=6): |
| 1688 | print(a, b, c, d, e, f) |
| 1689 | print(a, b, c, d) |
| 1690 | return inner |
| 1691 | print(a, b, '', 1, [], {}, "Hello world!") |
| 1692 | return f |
| 1693 | |
| 1694 | def jumpy(): |
| 1695 | # This won't actually run (but that's OK, we only disassemble it) |
no outgoing calls
no test coverage detected
searching dependent graphs…