]> granicus.if.org Git - python/commitdiff
Fix a typo. (closes #18953)
authorSerhiy Storchaka <storchaka@gmail.com>
Sun, 8 Sep 2013 17:43:02 +0000 (20:43 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Sun, 8 Sep 2013 17:43:02 +0000 (20:43 +0300)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 128e740b746636efa2f278265c34c8d356e7f300,51e055786e35398911ef39c7020fa9bd21cdef96..1a052f13f8bd27f1097274f5b5bd7a761fec9e98
+++ 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.