[3.6] bpo-29532: Altering a kwarg dictionary passed to functools.partial() … by serhiy-storchaka · Pull Request #209 · python/cpython (original) (raw)
@@ -66,6 +66,19 @@ Extension Modules
Library
-------
- bpo-29532: Altering a kwarg dictionary passed to functools.partial()
no longer affects a partial object after creation.
- bpo-22807: Add uuid.SafeUUID and uuid.UUID.is_safe to relay information from
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
22807, 29576 and 29534 were master-only changes and they shouldn't be listed in 3.6 branch.
the platform about whether generated UUIDs are generated with a
multiprocessing safe method.
- bpo-29576: Improve some deprecations in importlib. Some deprecated methods
now emit DeprecationWarnings and have better descriptive messages.
- 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.