From: Antoine Pitrou Date: Thu, 2 Aug 2012 18:39:10 +0000 (+0200) Subject: Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. X-Git-Tag: v3.3.0b2~62 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77821b68a7f23318374087e9c6710ef66312f78d;p=python Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. Patch by Philipp Hagemeister. --- 77821b68a7f23318374087e9c6710ef66312f78d diff --cc Misc/NEWS index 4b3a65affc,14121df8f9..a95d743f40 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -72,17 -98,20 +72,20 @@@ Core and Builtin Library ------- + - Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() + emulation code. Patch by Philipp Hagemeister. + -- Issue #9803: Don't close IDLE on saving if breakpoint is open. - Patch by Roger Serwy. - -- Issue #12288: Consider '0' and '0.0' as valid initialvalue - for tkinter SimpleDialog. +- Issue #15519: Properly expose WindowsRegistryFinder in importlib (and use + the correct term for it). Original patch by Eric Snow. -- Issue #15489: Add a __sizeof__ implementation for BytesIO objects. - Patch by Serhiy Storchaka. +- Issue #15502: Bring the importlib ABCs into line with the current state + of the import protocols given PEP 420. Original patch by Eric Snow. -- Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. - Patch by Serhiy Storchaka. +- Issue #15499: Launching a webbrowser in Unix used to sleep for a few + seconds. Original patch by Anton Barkovsky. + +- Issue #15463: the faulthandler module truncates strings to 500 characters, + instead of 100, to be able to display long file paths - Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. Original patch by J Derek Wilson.