diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2017-02-13 22:28:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-13 22:28:58 (GMT) |
commit | 9c5684e0d380cf5bc109888603756084588ce617 (patch) | |
tree | 64deaca465451f66787fd4f40ae11dd2dec2e75f /Misc | |
parent | af456b241bd4889ac94eb215e73da400380460a0 (diff) | |
download | cpython-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/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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. |