From: Berker Peksag Date: Wed, 8 Apr 2015 14:57:44 +0000 (+0300) Subject: Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not available. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=291d7b0284c879b727e6f1c0d0c35a062c316a3a;p=python Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not available. Patch by Davin Potts. --- 291d7b0284c879b727e6f1c0d0c35a062c316a3a diff --cc Misc/NEWS index 6c7c26364f,61162df258..7756bcef55 --- a/Misc/NEWS +++ 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.