summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2016-08-23 15:16:52 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2016-08-23 15:16:52 (GMT)
commit7caf908c64a0d6d8c875e7403f22992227be47f2 (patch)
tree68d8ac2ed42eec79ba69423e9f35324fef52a945 /Lib/test
parentf4d28d43857295cab4dc82a2bc50f5e8c90123ef (diff)
downloadcpython-7caf908c64a0d6d8c875e7403f22992227be47f2.zip
cpython-7caf908c64a0d6d8c875e7403f22992227be47f2.tar.gz
cpython-7caf908c64a0d6d8c875e7403f22992227be47f2.tar.bz2
Issue #27832: Make _normalize parameter to Fraction.__init__ keyword-only.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_fractions.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_fractions.py b/Lib/test/test_fractions.py
index 664c735..7905c36 100644
--- a/Lib/test/test_fractions.py
+++ b/Lib/test/test_fractions.py
@@ -150,6 +150,7 @@ class FractionTest(unittest.TestCase):
self.assertRaises(TypeError, F, "3/2", 3)
self.assertRaises(TypeError, F, 3, 0j)
self.assertRaises(TypeError, F, 3, 1j)
+ self.assertRaises(TypeError, F, 1, 2, 3)
@requires_IEEE_754
def testInitFromFloat(self):