]> granicus.if.org Git - python/commitdiff
whatsnew: difflib.isbjunk &c were removed, not deprecated.
authorR David Murray <rdmurray@bitdance.com>
Fri, 14 Mar 2014 01:34:54 +0000 (21:34 -0400)
committerR David Murray <rdmurray@bitdance.com>
Fri, 14 Mar 2014 01:34:54 +0000 (21:34 -0400)
Also move NEWS item to correct position (it was in 3.3).

Doc/whatsnew/3.4.rst
Misc/NEWS

index dae0c54d7a0192380b322a659642e66dd99bdd71..001b4d915fab3e42df9924c0c8ab8dd9ea76bf29 100644 (file)
@@ -2051,10 +2051,6 @@ using ``-Wd``).
 Deprecations in the Python API
 ------------------------------
 
-* :meth:`difflib.SequenceMatcher.isbjunk` and
-  :meth:`difflib.SequenceMatcher.isbpopular` were removed: use ``x in sm.bjunk`` and
-  ``x in sm.bpopular``, where *sm* is a :class:`~difflib.SequenceMatcher` object.
-
 * As mentioned in :ref:`whatsnew-pep-451`, a number of :mod:`importilb`
   methods and functions are deprecated: :meth:`importlib.find_loader` is
   replaced by :func:`importlib.util.find_spec`;
@@ -2194,6 +2190,12 @@ removed:
   that do not have a __format__ method that handles it.  See :issue:`7994` for
   background.
 
+* :meth:`difflib.SequenceMatcher.isbjunk` and
+  :meth:`difflib.SequenceMatcher.isbpopular` were deprecated in 3.2, and have
+  now been removed: use ``x in sm.bjunk`` and
+  ``x in sm.bpopular``, where *sm* is a :class:`~difflib.SequenceMatcher` object
+  (:issue:`13248`).
+
 
 Code Cleanups
 -------------
index 66fa6536a8f83440ed9b89cfcd24cc1e8134c793..91c669382cead6c9076f0468d361bc8468b6f687 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -3077,6 +3077,9 @@ Library
 - Issue #17467: add readline and readlines support to mock_open in
   unittest.mock.
 
+- Issue #13248: removed deprecated and undocumented difflib.isbjunk,
+  isbpopular.
+
 - Issue #17192: Update the ctypes module's libffi to v3.0.13.  This
   specifically addresses a stack misalignment issue on x86 and issues on
   some more recent platforms.
@@ -4512,8 +4515,6 @@ Core and Builtins
 Library
 -------
 
-- Issue #13248: removed deprecated and undocumented difflib.isbjunk, isbpopular.
-
 - Issue #13370: Ensure that ctypes works on Mac OS X when Python is compiled
   using the clang compiler.