[issue25060] BUILD_MAP stack effect suboptimal

2015-09-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6c1b0dd07340 by Benjamin Peterson in branch '3.5': compute stack effect of BUILD_MAP correctly (closes #25060) https://hg.python.org/cpython/rev/6c1b0dd07340 New changeset 7d76df6dafde by Benjamin Peterson in branch 'default': merge 3.5 (#25060) htt

[issue25060] BUILD_MAP stack effect suboptimal

2015-09-10 Thread Antoine Pitrou
New submission from Antoine Pitrou: In PyCompile_OpcodeStackEffect() compile.c: case BUILD_MAP: return 1; But starting from 3.5, BUILD_MAP pops 2*oparg objects from the stack. -- components: Interpreter Core messages: 250391 nosy: benjamin.peterson, georg.brandl, pi