summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_fractions.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-01-03 22:07:57 (GMT)
committerGeorg Brandl <georg@python.org>2009-01-03 22:07:57 (GMT)
commit3a9b062f5bb0f7d9c2a408c31509cdee4f6aa4c8 (patch)
tree1bc74abad9db6c9a36875d97c1229998ea26fa4f /Lib/test/test_fractions.py
parent3f5f8228c02618480a2fd6bc8583621a94bacf2f (diff)
downloadcpython-3a9b062f5bb0f7d9c2a408c31509cdee4f6aa4c8.zip
cpython-3a9b062f5bb0f7d9c2a408c31509cdee4f6aa4c8.tar.gz
cpython-3a9b062f5bb0f7d9c2a408c31509cdee4f6aa4c8.tar.bz2
Manually merge r68096,68189 from 3.0 branch.
Diffstat (limited to 'Lib/test/test_fractions.py')
-rw-r--r--Lib/test/test_fractions.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_fractions.py b/Lib/test/test_fractions.py
index 4fadf6c..6851d2d 100644
--- a/Lib/test/test_fractions.py
+++ b/Lib/test/test_fractions.py
@@ -136,6 +136,8 @@ class FractionTest(unittest.TestCase):
def testFromFloat(self):
self.assertRaises(TypeError, F.from_float, 3+4j)
self.assertEquals((10, 1), _components(F.from_float(10)))
+ bigint = 1234567890123456789
+ self.assertEquals((bigint, 1), _components(F.from_float(bigint)))
self.assertEquals((0, 1), _components(F.from_float(-0.0)))
self.assertEquals((10, 1), _components(F.from_float(10.0)))
self.assertEquals((-5, 2), _components(F.from_float(-2.5)))