]> granicus.if.org Git - python/commitdiff
Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not available.
authorBerker Peksag <berker.peksag@gmail.com>
Wed, 8 Apr 2015 14:57:44 +0000 (17:57 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Wed, 8 Apr 2015 14:57:44 +0000 (17:57 +0300)
Patch by Davin Potts.

1  2 
Doc/library/multiprocessing.rst
Lib/multiprocessing/queues.py
Misc/NEWS

Simple merge
Simple merge
diff --cc Misc/NEWS
index 6c7c26364f9406471d6132b41f68070fb1c8dfe9,61162df258534976ce7d893ddf5aa08bb88b090e..7756bcef552cb39d095208f6a088a117f01cba97
+++ b/Misc/NEWS
@@@ -19,14 -24,6 +19,17 @@@ Core and Builtin
  Library
  -------
  
++- Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not
++  available.  Patch by Davin Potts.
++
 +- Issue #10838: The subprocess now module includes SubprocessError and
 +  TimeoutError in its list of exported names for the users wild enough
 +  to use "from subprocess import *".
 +
 +- Issue #23411: Added DefragResult, ParseResult, SplitResult, DefragResultBytes,
 +  ParseResultBytes, and SplitResultBytes to urllib.parse.__all__.
 +  Patch by Martin Panter.
 +
  - Issue #23881: urllib.request.ftpwrapper constructor now closes the socket if
    the FTP connection failed to fix a ResourceWarning.