Message169900
> Method calls on literals are always fair game, though (e.g. you could optimise "a b c".split())
What about optimizations that do not change behavior, except for different error messages? E.g. we can change
y = [1,2][x]
to
y = (1,2)[x]
where the tuple is constant and is stored in co_consts. This will, however, produce a different text in the exception when x is not 0 or 1. The type of exception is going to be the same. |
|
Date |
User |
Action |
Args |
2012-09-06 01:20:24 | eltoder | set | recipients:
+ eltoder, brett.cannon, georg.brandl, rhettinger, terry.reedy, gregory.p.smith, mark.dickinson, ncoghlan, pitrou, vstinner, techtonik, nadeem.vawda, benjamin.peterson, alex, Trundle, dmalcolm, meador.inge, daniel.urban, Jeremy.Hylton, santoso.wijaya, eric.snow, jcon |
2012-09-06 01:20:24 | eltoder | set | messageid: <1346894424.55.0.169630324232.issue11549@psf.upfronthosting.co.za> |
2012-09-06 01:20:24 | eltoder | link | issue11549 messages |
2012-09-06 01:20:23 | eltoder | create | |
|