how many places are optimized in Python's bytecode(version 2.5) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T05:28:18Z http://stackoverflow.com/feeds/question/1010914 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1010914/how-many-places-are-optimized-in-pythons-bytecodeversion-2-5 1 how many places are optimized in Python's bytecode(version 2.5) higer 2009-06-18T05:33:29Z 2009-06-18T05:46:05Z <p>Can anyone tell me how many places there are optimized in Python's bytecode? I was trying to de-compile Python's bytecode these days,but I found that in Python's version 2.5 there are a lot of optimization.For example: to this code</p> <pre><code>a,b,c=([],[],[])#build list </code></pre> <p>the non-optimized bytecode before version2.5 is like that:</p> <pre><code>BUILD_LIST_0 BUILD_LIST_0 BUILD_LIST_0 BUILD_LIST_4 UNPACK_LIST_ STORE_NAME 'a' STORE_NAME 'b' STORE_NAME 'c' </code></pre> <p>In the version2.5,the optimized bytecode is like this:</p> <pre><code>BUILD_LIST_0 BUILD_LIST_0 BUILD_LIST_0 ROT_THREE ROT_TWO STORE_FAST 'a' STORE_FAST 'b' STORE_FAST 'c' </code></pre> <p>This is only one example,but there are many other places may be optimized. So,does anybode know is there some documentation to clarify these optimization or tell me in which way I can find all of them?</p> http://stackoverflow.com/questions/1010914/how-many-places-are-optimized-in-pythons-bytecodeversion-2-5/1010947#1010947 0 Answer by Head Geek for how many places are optimized in Python's bytecode(version 2.5) Head Geek 2009-06-18T05:41:59Z 2009-06-18T05:41:59Z <p>I don't think there's any documentation per se, but there's the C code for the Python interpreter. You can find several different versions of it <a href="http://python.org/download/releases/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1010914/how-many-places-are-optimized-in-pythons-bytecodeversion-2-5/1010963#1010963 2 Answer by Alex Martelli for how many places are optimized in Python's bytecode(version 2.5) Alex Martelli 2009-06-18T05:46:05Z 2009-06-18T05:46:05Z <p>The <a href="http://svn.python.org/projects/python/trunk/Python/peephole.c" rel="nofollow">Python/peephole.c</a> source file is where basically all such optimizations are performed -- the link I gave is to the current version (2.6 or better), because I'm having trouble getting to the dynamic source browser <a href="http://svn.python.org/view/python/?view=log" rel="nofollow">here</a>, but once it works again it's easy to see specific versions such as the one that was extant for (say) 2.5.2 or whatever other specific version you need this information for.</p>