mirror of
https://github.com/python/cpython.git
synced 2026-05-17 01:49:12 -04:00
21ee37c94e
is slow things down unnecessarily and make tracing much more verbose.
Something like
def f(n):
return [i for i in range(n) if i%2]
should have at most two SET_LINENO instructions, not four. When tracing,
the current line number should be printed once, not 2*n+1 times.