Irit Katriel <iritkatr...@gmail.com> added the comment:
I can't reproduce this now: >>> statistics.geometric_mean([2, 3, 5, 7]) 3.80675409583932 >>> statistics.geometric_mean([2, 3, 5, 7.0]) 3.80675409583932 >>> statistics.geometric_mean([2, 3, 5.0, 7.0]) 3.80675409583932 >>> statistics.geometric_mean([2, 3.0, 5.0, 7.0]) 3.80675409583932 >>> statistics.geometric_mean([2.0, 3.0, 5.0, 7.0]) 3.80675409583932 >>> The current geometric_mean was added in PR12638. Is this issue about a previous version? ---------- nosy: +iritkatriel _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue28327> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com