Files
cpython/Python
Antoine Pitrou b7fbcd396f Issue #6690: Optimize the bytecode for expressions such as x in {1, 2, 3},
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.
2010-01-16 18:37:38 +00:00
..
2009-11-10 19:50:40 +00:00
2009-04-07 22:55:31 +00:00
2009-04-27 20:54:42 +00:00
2009-11-10 19:50:40 +00:00
2009-12-13 01:24:58 +00:00
2009-11-10 22:38:52 +00:00
2009-10-24 20:43:49 +00:00