[Python-checkins] bpo-35904: Add missing fmean() entry to the summary table (GH-12919)

Raymond Hettinger webhook-mailer at python.org
Tue Apr 23 04:39:58 EDT 2019


https://github.com/python/cpython/commit/7280048690244e73b13f4f68b96c244bcb5434e8
commit: 7280048690244e73b13f4f68b96c244bcb5434e8
branch: master
author: Raymond Hettinger <rhettinger at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-04-23T01:35:16-07:00
summary:

bpo-35904: Add missing fmean() entry to the summary table (GH-12919)

files:
M Lib/statistics.py

diff --git a/Lib/statistics.py b/Lib/statistics.py
index 05edfdf98e06..4a0978cbcd9c 100644
--- a/Lib/statistics.py
+++ b/Lib/statistics.py
@@ -11,6 +11,7 @@
 Function            Description
 ==================  ==================================================
 mean                Arithmetic mean (average) of data.
+fmean               Fast, floating point arithmetic mean.
 geometric_mean      Geometric mean of data.
 harmonic_mean       Harmonic mean of data.
 median              Median (middle value) of data.



More information about the Python-checkins mailing list