commit | 3a9b062f5bb0f7d9c2a408c31509cdee4f6aa4c8 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sat Jan 03 22:07:57 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Sat Jan 03 22:07:57 2009 +0000 |
tree | 1bc74abad9db6c9a36875d97c1229998ea26fa4f | |
parent | 3f5f8228c02618480a2fd6bc8583621a94bacf2f [diff] [blame] |
Manually merge r68096,68189 from 3.0 branch.
diff --git a/Lib/fractions.py b/Lib/fractions.py index bc06524..ed1e9a0 100755 --- a/Lib/fractions.py +++ b/Lib/fractions.py
@@ -109,7 +109,7 @@ """ if isinstance(f, numbers.Integral): - f = float(f) + return cls(f) elif not isinstance(f, float): raise TypeError("%s.from_float() only takes floats, not %r (%s)" % (cls.__name__, f, type(f).__name__))