]> granicus.if.org Git - python/commitdiff
Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code.
authorAntoine Pitrou <solipsis@pitrou.net>
Thu, 2 Aug 2012 18:39:10 +0000 (20:39 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Thu, 2 Aug 2012 18:39:10 +0000 (20:39 +0200)
Patch by Philipp Hagemeister.

1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 4b3a65affcc1f095fab024ee29b77f15e70e541d,14121df8f922e7d19103eb0d1e17cc792c64e994..a95d743f408b99998f9407c761c7680401d5b890
+++ b/Misc/NEWS
@@@ -72,17 -98,20 +72,20 @@@ Core and Builtin
  Library
  -------
  
 -- 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 #15538: Fix compilation of the getnameinfo() / getaddrinfo()
+   emulation code.  Patch by Philipp Hagemeister.
 +- 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.