diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-04-08 14:56:30 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-04-08 14:56:30 (GMT) |
commit | 7ecfc82edbe5ccb125f53b92447abd4bc155ba1c (patch) | |
tree | b37c62d0be854512af5b840974aad890201b1084 /Misc | |
parent | 52c0c3382d95a8a4877a5dfaaacf61b436f0b1bf (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |