From: Mark Dickinson Date: Mon, 9 May 2011 07:05:00 +0000 (+0100) Subject: Fix cut-and-paste typo in comment: log10 -> log2. X-Git-Tag: v3.3.0a1~2346 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=23442584f428ca85ede8df5641b46f0213b16bfd;p=python Fix cut-and-paste typo in comment: log10 -> log2. --- diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index 8815dd53b9..d2d461e096 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -622,7 +622,7 @@ m_log2(double x) } else { errno = EDOM; - return Py_NAN; /* log10(-inf) = nan, invalid-operation */ + return Py_NAN; /* log2(-inf) = nan, invalid-operation */ } }