Closed
Description
Documentation
The dis
module docs for BUILD_LIST
(and BUILD_SET
and BUILD_TUPLE
) say that the count
argument must be > 0:
Lines 1081 to 1098 in 17d5b9d
But the code []
generates the instruction BUILD_LIST 0
. godbolt repro
I assume either the docs are meant to say assert count >= 0
or maybe the assert is only valid for BUILD_TUPLE
?