diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-03-22 04:04:45 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-03-22 04:04:45 (GMT) |
commit | 440282ba8a32271b9c727ed78f85afab3015fec0 (patch) | |
tree | 16d314f67b632bf62e05d09b21cf6c3724cee91a /Lib/importlib/_bootstrap.py | |
parent | f516388de83f945250dfa75779c059f453e0c811 (diff) | |
download | cpython-440282ba8a32271b9c727ed78f85afab3015fec0.zip cpython-440282ba8a32271b9c727ed78f85afab3015fec0.tar.gz cpython-440282ba8a32271b9c727ed78f85afab3015fec0.tar.bz2 |
copy 2.7 magic numbers for historical interest
Diffstat (limited to 'Lib/importlib/_bootstrap.py')
-rw-r--r-- | Lib/importlib/_bootstrap.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index 73aa0ca..9a48c16 100644 --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -351,6 +351,12 @@ Known values: Python 2.5c2: 62131 (fix wrong code: for x, in ... in listcomp/genexp) Python 2.6a0: 62151 (peephole optimizations and STORE_MAP opcode) Python 2.6a1: 62161 (WITH_CLEANUP optimization) + Python 2.7a0: 62171 (optimize list comprehensions/change LIST_APPEND) + Python 2.7a0: 62181 (optimize conditional branches: + introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE) + Python 2.7a0 62191 (introduce SETUP_WITH) + Python 2.7a0 62201 (introduce BUILD_SET) + Python 2.7a0 62211 (introduce MAP_ADD and SET_ADD) Python 3000: 3000 3010 (removed UNARY_CONVERT) 3020 (added BUILD_SET) |