diff options
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 26 |
1 files changed, 23 insertions, 3 deletions
@@ -98,6 +98,9 @@ Core and Builtins Library ------- +- Issue #23144: Make sure that HTMLParser.feed() returns all the data, even + when convert_charrefs is True. + - Issue #24982: shutil.make_archive() with the "zip" format now adds entries for directories (including empty directories) in ZIP file. @@ -143,6 +146,9 @@ Library Documentation ------------- +- Issue #24952: Clarify the default size argument of stack_size() in + the "threading" and "_thread" modules. Patch from Mattip. + - Issue #23725: Overhaul tempfile docs. Note deprecated status of mktemp. Patch from Zbigniew Jędrzejewski-Szmek. @@ -167,6 +173,23 @@ Build when external libraries are not available. +What's New in Python 3.5.0 release candidate 4? +=============================================== + +Release date: 2015-09-09 + +Library +------- + +- Issue #25029: Fixes MemoryError in test_strptime. + +Build +----- + +- Issue #25027: Reverts partial-static build options and adds + vcruntime140.dll to Windows installation. + + What's New in Python 3.5.0 release candidate 3? =============================================== @@ -186,8 +209,6 @@ Library ------- - Issue #24917: time_strftime() buffer over-read. -- Issue #23144: Make sure that HTMLParser.feed() returns all the data, even - when convert_charrefs is True. - Issue #24748: To resolve a compatibility problem found with py2exe and pywin32, imp.load_dynamic() once again ignores previously loaded modules @@ -197,7 +218,6 @@ Library - Issue #24635: Fixed a bug in typing.py where isinstance([], typing.Iterable) would return True once, then False on subsequent calls. - - Issue #24989: Fixed buffer overread in BytesIO.readline() if a position is set beyond size. Based on patch by John Leitch. |