[Python-checkins] cpython (3.4): Fix typo.

georg.brandl python-checkins at python.org
Tue Oct 28 22:25:05 CET 2014


https://hg.python.org/cpython/rev/48371a4a32f3
changeset:   93196:48371a4a32f3
branch:      3.4
parent:      93192:4ad8b11ca309
user:        Georg Brandl <georg at python.org>
date:        Tue Oct 28 22:24:46 2014 +0100
summary:
  Fix typo.

files:
  Modules/_math.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_math.c b/Modules/_math.c
--- a/Modules/_math.c
+++ b/Modules/_math.c
@@ -240,7 +240,7 @@
         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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list