[Python-checkins] Fixing wording in comment. (GH-10425)

Miss Islington (bot) webhook-mailer at python.org
Fri Nov 9 04:06:10 EST 2018


https://github.com/python/cpython/commit/216aaaa0564951f2ca408e2086ba60d849d52902
commit: 216aaaa0564951f2ca408e2086ba60d849d52902
branch: master
author: Raymond Hettinger <rhettinger at users.noreply.github.com>
committer: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
date: 2018-11-09T01:06:02-08:00
summary:

Fixing wording in comment. (GH-10425)



Since the n==1 case just returns *max*, it cannot be larger
than the magnitude of the vector entry.

files:
M Modules/mathmodule.c

diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index e956314e27fc..b83befbd3194 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -2043,7 +2043,7 @@ Given an *n* length *vec* of values and a value *max*, compute:
     max * sqrt(sum((x / max) ** 2 for x in vec))
 
 The value of the *max* variable must be non-negative and
-at least equal to the absolute value of the largest magnitude
+equal to the absolute value of the largest magnitude
 entry in the vector.  If n==0, then *max* should be 0.0.
 If an infinity is present in the vec, *max* should be INF.
 



More information about the Python-checkins mailing list