diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-25 16:34:23 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-25 16:34:23 (GMT) |
commit | b52ec78baf236272800017fdb2b7f243741c1851 (patch) | |
tree | 9413ca8258942269b39cc831a6788be0c772f203 /Misc | |
parent | e6aad75f2ba571de7f1bebcf6b1251c2c22360f1 (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |