summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-28 21:24:52 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-28 21:24:52 (GMT)
commit587bac1a0a6cf56afc6c6181cf5fc2e8366b9a31 (patch)
treeae13bb7b5cc29e3da4f3ab6a0c8e87e72ed9684b /Modules
parent0235709b8c122f7e84ad7e6a80a4c1e74513d8e5 (diff)
parente48ec212e886d8bb5be6613401dd53bc8cdc4f6d (diff)
downloadcpython-587bac1a0a6cf56afc6c6181cf5fc2e8366b9a31.zip
cpython-587bac1a0a6cf56afc6c6181cf5fc2e8366b9a31.tar.gz
cpython-587bac1a0a6cf56afc6c6181cf5fc2e8366b9a31.tar.bz2
merge with 3.4
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_math.c b/Modules/_math.c
index a14ff06..a002208 100644
--- a/Modules/_math.c
+++ b/Modules/_math.c
@@ -240,7 +240,7 @@ _Py_log1p(double x)
return x;
}
else if (-0.5 <= x && x <= 1.) {
- /* WARNING: it's possible than an overeager compiler
+ /* WARNING: it's possible that an overeager compiler
will incorrectly optimize the following two lines
to the equivalent of "return log(1.+x)". If this
happens, then results from log1p will be inaccurate