summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-13 21:15:58 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-13 21:15:58 (GMT)
commit042b128f58a952b2cd04bd5b7401bd54c67a687e (patch)
treec4ac0fda68d9062064f3d28fa8baa80668515c26 /Misc
parentd835cf1c84f2b29d54f583139e03b95b906b6081 (diff)
downloadcpython-042b128f58a952b2cd04bd5b7401bd54c67a687e.zip
cpython-042b128f58a952b2cd04bd5b7401bd54c67a687e.tar.gz
cpython-042b128f58a952b2cd04bd5b7401bd54c67a687e.tar.bz2
Issue #9203: Computed gotos are now enabled by default on supported
compilers (which are detected by the configure script). They can still be disable selectively by specifying --without-computed-gotos.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d7580fc..28e0314 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 3.2 Alpha 2?
Core and Builtins
-----------------
+- Issue #9203: Computed gotos are now enabled by default on supported
+ compilers (which are detected by the configure script). They can still
+ be disable selectively by specifying --without-computed-gotos.
+
- Issue #9425: Create PyErr_WarnFormat() function, similar to PyErr_WarnEx()
but use PyUnicode_FromFormatV() to format the warning message.