summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-02-13 22:28:58 (GMT)
committerGitHub <noreply@github.com>2017-02-13 22:28:58 (GMT)
commit9c5684e0d380cf5bc109888603756084588ce617 (patch)
tree64deaca465451f66787fd4f40ae11dd2dec2e75f /Misc
parentaf456b241bd4889ac94eb215e73da400380460a0 (diff)
downloadcpython-9c5684e0d380cf5bc109888603756084588ce617.zip
cpython-9c5684e0d380cf5bc109888603756084588ce617.tar.gz
cpython-9c5684e0d380cf5bc109888603756084588ce617.tar.bz2
bpo-28556: Various updates to typing (#28) (#78)
various updates from upstream python/typing repo: - Added typing.Counter and typing.ChainMap generics - More flexible typing.NamedTuple - Improved generic ABC caching - More tests - Bugfixes - Other updates * Add Misc/NEWS entry * Add issue number Contributed by Ivan Levkivskyi @ilevkivskyi (cherry picked from commit b692dc8475a032740576129d0990ddc3edccab2b)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6a1abf1..fe50135 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,13 @@ Extension Modules
Library
-------
+- 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.
+
+- Issue #29100: Fix datetime.fromtimestamp() regression introduced in Python
+ 3.6.0: check minimum and maximum years.
+
- Issue #29519: Fix weakref spewing exceptions during interpreter shutdown
when used with a rare combination of multiprocessing and custom codecs.