From: Serhiy Storchaka Date: Thu, 12 May 2016 07:39:32 +0000 (+0300) Subject: Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f364438adf1bcdc89a51af9af526ed9d7b7996d;p=python Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. --- 1f364438adf1bcdc89a51af9af526ed9d7b7996d diff --cc Misc/NEWS index c5ad0f7d89,199476de24..15d278b8ea --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,12 -10,8 +10,14 @@@ Release date: tb Core and Builtins ----------------- + - Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. + +- Issue #27005: Optimized the float.fromhex() class method for exact float. + It is now 2 times faster. + +- Issue #18531: Single var-keyword argument of dict subtype was passed + unscathed to the C-defined function. Now it is converted to exact dict. + - Issue #26811: gc.get_objects() no longer contains a broken tuple with NULL pointer.