• Antoine Pitrou's avatar
    Issue #6690: Optimize the bytecode for expressions such as `x in {1, 2, 3}`, · b7fbcd39
    Antoine Pitrou yazdı
    where the right hand operand is a set of constants, by turning the set into
    a frozenset and pre-building it as a constant.  The comparison operation
    is made against the constant instead of building a new set each time it is
    executed (a similar optimization already existed which turned a list of
    constants into a pre-built tuple).  Patch and additional tests by Dave
    Malcolm.
    b7fbcd39
To find the state of this project's repository at the time of any of these versions, check out the tags.
NEWS 81 KB