From: Serhiy Storchaka Date: Wed, 4 Mar 2015 07:44:24 +0000 (+0200) Subject: Issue #23504: Added an __all__ to the types module. X-Git-Tag: v3.5.0a2~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35e5b72740893d84295282eef5681e13036ebb0b;p=python Issue #23504: Added an __all__ to the types module. --- 35e5b72740893d84295282eef5681e13036ebb0b diff --cc Misc/NEWS index a3fc735a96,75e1cc1c2d..0e0b2a5802 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -13,16 -13,10 +13,18 @@@ Core and Builtin Library ------- + - Issue #23504: Added an __all__ to the types module. + +- Issue #23563: Optimized utility functions in urllib.parse. + +- Issue #7830: Flatten nested functools.partial. + - Issue #20204: Added the __module__ attribute to _tkinter classes. +- Issue #19980: Improved help() for non-recognized strings. help('') now + shows the help on str. help('help') now shows the help on help(). + Original patch by Mark Lawrence. + - Issue #23521: Corrected pure python implementation of timedelta division. * Eliminated OverflowError from timedelta * float for some floats;