(x, y, z)
| 2128 | |
| 2129 | def test_show_caches_with_label(self): |
| 2130 | def f(x, y, z): |
| 2131 | if x: |
| 2132 | res = y |
| 2133 | else: |
| 2134 | res = z |
| 2135 | return res |
| 2136 | |
| 2137 | output = io.StringIO() |
| 2138 | dis.dis(f.__code__, file=output, show_caches=True) |
nothing calls this directly
no test coverage detected