diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2016-08-23 15:16:52 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2016-08-23 15:16:52 (GMT) |
commit | 7caf908c64a0d6d8c875e7403f22992227be47f2 (patch) | |
tree | 68d8ac2ed42eec79ba69423e9f35324fef52a945 /Misc | |
parent | f4d28d43857295cab4dc82a2bc50f5e8c90123ef (diff) | |
download | cpython-7caf908c64a0d6d8c875e7403f22992227be47f2.zip cpython-7caf908c64a0d6d8c875e7403f22992227be47f2.tar.gz cpython-7caf908c64a0d6d8c875e7403f22992227be47f2.tar.bz2 |
Issue #27832: Make _normalize parameter to Fraction.__init__ keyword-only.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -46,6 +46,9 @@ Core and Builtins Library ------- +- Issue #27832: Make ``_normalize`` parameter to ``Fraction`` constuctor + keyword-only, so that ``Fraction(2, 3, 4)`` now raises ``TypeError``. + - Issue #27539: Fix unnormalised ``Fraction.__pow__`` result in the case of negative exponent and negative base. |