diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2016-09-10 10:00:02 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2016-09-10 10:00:02 (GMT) |
commit | 457fc9a69e7918e3c10319604903915c2f2ecd9a (patch) | |
tree | a5c07e94a0442b8e7ac303ebf3643295a1c16888 /Misc | |
parent | eddc4b7272c310fc5008c8c826ed70fa936cd661 (diff) | |
download | cpython-457fc9a69e7918e3c10319604903915c2f2ecd9a.zip cpython-457fc9a69e7918e3c10319604903915c2f2ecd9a.tar.gz cpython-457fc9a69e7918e3c10319604903915c2f2ecd9a.tar.bz2 |
Issue #27137: align Python & C implementations of functools.partial
The pure Python fallback implementation of functools.partial
now matches the behaviour of its accelerated C counterpart for
subclassing, pickling and text representation purposes.
Patch by Emanuel Barry and Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -135,6 +135,11 @@ Core and Builtins Library ------- +- Issue #27137: the pure Python fallback implementation of ``functools.partial`` + now matches the behaviour of its accelerated C counterpart for subclassing, + pickling and text representation purposes. Patch by Emanuel Barry and + Serhiy Storchaka. + - Issue #28019: itertools.count() no longer rounds non-integer step in range between 1.0 and 2.0 to 1. |