summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2017-02-14 19:18:54 (GMT)
committerGitHub <noreply@github.com>2017-02-14 19:18:54 (GMT)
commit996c3874fdbc91d29f0a06b37043f62cf4ead6cb (patch)
tree765567e06faf60856f7c5f7b418a37cf73f0f5dd
parent6d1dece06d13a7d40637e07b2c79f34aab368766 (diff)
downloadcpython-996c3874fdbc91d29f0a06b37043f62cf4ead6cb.zip
cpython-996c3874fdbc91d29f0a06b37043f62cf4ead6cb.tar.gz
cpython-996c3874fdbc91d29f0a06b37043f62cf4ead6cb.tar.bz2
Issue #29534: move Misc/NEWS entry to correct section; add Misc/ACS entry for Andrew Nester. (#99)
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 4 insertions, 2 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 319128c..239bc7e 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1066,6 +1066,7 @@ Vilmos Nebehaj
Fredrik Nehr
Tony Nelson
Trent Nelson
+Andrew Nester
Chad Netzer
Max Neunhöffer
Anthon van der Neut
diff --git a/Misc/NEWS b/Misc/NEWS
index e6df014..e024e01 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,8 +10,6 @@ What's New in Python 3.7.0 alpha 1?
Core and Builtins
-----------------
-- bpo-29534: Fixed different behaviour of Decimal.from_float() for _decimal and _pydecimal.
-
- bpo-29438: Fixed use-after-free problem in key sharing dict.
- Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].
@@ -229,6 +227,9 @@ Extension Modules
Library
-------
+- bpo-29534: Fixed different behaviour of Decimal.from_float()
+ for _decimal and _pydecimal. Thanks Andrew Nester.
+
- Issue #28556: Various updates to typing module: typing.Counter, typing.ChainMap,
improved ABC caching, etc. Original PRs by Jelle Zijlstra, Ivan Levkivskyi,
Manuel Krebber, and Łukasz Langa.