summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2014-04-05 08:29:00 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2014-04-05 08:29:00 (GMT)
commit3c286e2e0d2aa17b5a90d671280a95ba5cd6521c (patch)
tree9e2d14f065f88831490e1673a1ac3ac0ca032bd5 /Misc
parent2a32200838be1359fa489869b366bf33db19da5c (diff)
downloadcpython-3c286e2e0d2aa17b5a90d671280a95ba5cd6521c.zip
cpython-3c286e2e0d2aa17b5a90d671280a95ba5cd6521c.tar.gz
cpython-3c286e2e0d2aa17b5a90d671280a95ba5cd6521c.tar.bz2
Issue #21136: Avoid unnecessary normalization in Fractions resulting from power and other operations.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d01f375..3bc36a9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Core and Builtins
Library
-------
+- Issue #21136: Avoid unnecessary normalization of Fractions resulting from
+ power and other operations. Patch by Raymond Hettinger.
+
- Issue #17621: Introduce importlib.util.LazyLoader.
- Issue #21076: signal module constants were turned into enums.