summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-04-18 20:17:52 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-04-18 20:17:52 (GMT)
commit7abf8d4066e9b4dd21f9a498427ac1ec8914c0ab (patch)
tree354e670eb1de034ee884818039a97f0141544961 /Misc
parent153c70f6d770f69314cc3f95ab240e2d9bcaf959 (diff)
downloadcpython-7abf8d4066e9b4dd21f9a498427ac1ec8914c0ab.zip
cpython-7abf8d4066e9b4dd21f9a498427ac1ec8914c0ab.tar.gz
cpython-7abf8d4066e9b4dd21f9a498427ac1ec8914c0ab.tar.bz2
The SSE2 detection and enabling could potentially cause
problems for binary distributions of Python in situations where the build machine has SSE2 but the target machine does not. Therefore, don't enable SSE2 instructions automatically on x86.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 0 insertions, 7 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 295ebd0..e230d82 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,13 +31,6 @@ Core and Builtins
value: str(1e11 + 0.5). (This minor issue has existed in 2.x for a
long time.)
-- On x86, SSE2 instructions for floating-point are automatically
- detected and, where possible, enabled on platforms using the gcc
- compiler. As a consequence, some arithmetic operations may have
- different (more accurate!) results on some platforms, and
- cross-platform consistency of Python arithmetic should be improved.
- This applies particularly to Linux/x86.
-
- Issue #1580: On most platforms, use a 'short' float repr: for a
finite float x, repr(x) now outputs a string based on the shortest
sequence of decimal digits that rounds to x. Previous behaviour was