This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mark.dickinson
Recipients David MacIver, bar.harel, benjamin.peterson, josh.r, mark.dickinson, steven.daprano
Date 2015-11-06.19:38:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1446838707.46.0.0265991487122.issue25177@psf.upfronthosting.co.za>
In-reply-to
Content
I can reproduce here (OS X 10.9, Python 3.5), exactly as described in the original post.

Python 3.5.0 (default, Sep 22 2015, 18:26:54) 
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import statistics
>>> statistics.mean([8.988465674311579e+307, 8.98846567431158e+307])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/opt/local/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/statistics.py", line 293, in mean
    return _sum(data)/n
  File "/opt/local/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/statistics.py", line 184, in _sum
    return T(total)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/numbers.py", line 291, in __float__
    return self.numerator / self.denominator
OverflowError: integer division result too large for a float
History
Date User Action Args
2015-11-06 19:38:27mark.dickinsonsetrecipients: + mark.dickinson, benjamin.peterson, steven.daprano, josh.r, David MacIver, bar.harel
2015-11-06 19:38:27mark.dickinsonsetmessageid: <1446838707.46.0.0265991487122.issue25177@psf.upfronthosting.co.za>
2015-11-06 19:38:27mark.dickinsonlinkissue25177 messages
2015-11-06 19:38:27mark.dickinsoncreate