summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-04-08 14:56:30 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-04-08 14:56:30 (GMT)
commit7ecfc82edbe5ccb125f53b92447abd4bc155ba1c (patch)
treeb37c62d0be854512af5b840974aad890201b1084 /Misc
parent52c0c3382d95a8a4877a5dfaaacf61b436f0b1bf (diff)
downloadcpython-7ecfc82edbe5ccb125f53b92447abd4bc155ba1c.zip
cpython-7ecfc82edbe5ccb125f53b92447abd4bc155ba1c.tar.gz
cpython-7ecfc82edbe5ccb125f53b92447abd4bc155ba1c.tar.bz2
Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not available.
Patch by Davin Potts.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 645e1ad..61162df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Library
- Issue #23881: urllib.request.ftpwrapper constructor now closes the socket if
the FTP connection failed to fix a ResourceWarning.
+- Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not
+ available. Patch by Davin Potts.
+
- Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and always
returns bool. tkinter.BooleanVar now validates input values (accepted bool,
int, str, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool.