summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorIvan Levkivskyi <levkivskyi@gmail.com>2017-02-13 21:50:14 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2017-02-13 21:50:14 (GMT)
commitb692dc8475a032740576129d0990ddc3edccab2b (patch)
treebca0dc4276619ea45012e3dd1fb4159056d9fefc /Misc
parent3cdbd68ce8230cff1afb67472b96fbfa7f047e32 (diff)
downloadcpython-b692dc8475a032740576129d0990ddc3edccab2b.zip
cpython-b692dc8475a032740576129d0990ddc3edccab2b.tar.gz
cpython-b692dc8475a032740576129d0990ddc3edccab2b.tar.bz2
bpo-28556: Various updates to typing (#28)
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
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index eb870b7..8786f19 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -227,6 +227,10 @@ 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.