summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-02-14 14:11:12 (GMT)
committerGitHub <noreply@github.com>2017-02-14 14:11:12 (GMT)
commit0230e64d2c976ab755c145e97bf86032e0fe3a53 (patch)
tree71b13d604b4757b0b1b2ed95fbd1e6505e3e522e /Misc
parent2d0c2286f8e19e5d6a45cf16f766382115431c2e (diff)
downloadcpython-0230e64d2c976ab755c145e97bf86032e0fe3a53.zip
cpython-0230e64d2c976ab755c145e97bf86032e0fe3a53.tar.gz
cpython-0230e64d2c976ab755c145e97bf86032e0fe3a53.tar.bz2
bpo-28556: Various updates to typing (#28) (#77)
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 (cherry picked from commit b692dc8475a032740576129d0990ddc3edccab2b)
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 ceea222..0fe1f9b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -59,6 +59,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.