summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-01-25 16:34:23 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-01-25 16:34:23 (GMT)
commitb52ec78baf236272800017fdb2b7f243741c1851 (patch)
tree9413ca8258942269b39cc831a6788be0c772f203 /Misc
parente6aad75f2ba571de7f1bebcf6b1251c2c22360f1 (diff)
downloadcpython-b52ec78baf236272800017fdb2b7f243741c1851.zip
cpython-b52ec78baf236272800017fdb2b7f243741c1851.tar.gz
cpython-b52ec78baf236272800017fdb2b7f243741c1851.tar.bz2
Issue #4753: By enabling a configure option named '--with-computed-gotos'
on compilers that support it (notably: gcc, SunPro, icc), the bytecode evaluation loop is compiled with a new dispatch mechanism which gives speedups of up to 20%, depending on the system, on various benchmarks.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 684ba7f..ad3623c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,11 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
+- Issue #4753: By enabling a configure option named '--with-computed-gotos'
+ on compilers that support it (notably: gcc, SunPro, icc), the bytecode
+ evaluation loop is compiled with a new dispatch mechanism which gives
+ speedups of up to 20%, depending on the system, on various benchmarks.
+
- Issue #4874: Most builtin decoders now reject unicode input.
- Issue #4842: Don't allow trailing 'L' when constructing an integer