From: Serhiy Storchaka Date: Sun, 8 Sep 2013 17:43:02 +0000 (+0300) Subject: Fix a typo. (closes #18953) X-Git-Tag: v3.4.0a3~94^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=050b62d1a684925635193707d2fd1256b4021f6e;p=thirdparty%2FPython%2Fcpython.git Fix a typo. (closes #18953) --- 050b62d1a684925635193707d2fd1256b4021f6e diff --cc Misc/NEWS index 128e740b7466,51e055786e35..1a052f13f8bd --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -76,18 -68,8 +76,18 @@@ Core and Builtin Library ------- +- Issue #18808: Thread.join() now waits for the underlying thread state to + be destroyed before returning. This prevents unpredictable aborts in + Py_EndInterpreter() when some non-daemon threads are still running. + +- Issue #18458: Prevent crashes with newer versions of libedit. Its readline + emulation has changed from 0-based indexing to 1-based like gnu readline. + +- Issue #18852: Handle case of ``readline.__doc__`` being ``None`` in the new + readline activation code in ``site.py``. + - Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in - the _sre moduel. + the _sre module. - Issue #18830: inspect.getclasstree() no more produces duplicated entries even when input list contains duplicates.