]> granicus.if.org Git - python/commitdiff
Issue #13248: NEWS and What's New items
authorTerry Jan Reedy <tjreedy@udel.edu>
Thu, 21 Mar 2013 23:36:26 +0000 (19:36 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Thu, 21 Mar 2013 23:36:26 +0000 (19:36 -0400)
Doc/whatsnew/3.4.rst
Misc/NEWS

index ab0b163d1b90e9cec33c290412fae6707a26aeaa..30d3e705bd3b80d9f9af059ee544cef40047a1e2 100644 (file)
@@ -185,7 +185,9 @@ Unsupported Operating Systems
 Deprecated Python modules, functions and methods
 ------------------------------------------------
 
-* None yet.
+* :meth:`difflib.SequenceMatcher.isbjunk` and
+  :meth:`difflib.SequenceMatcher.isbpopulur`: use ``x in sm.bjunk`` and
+  ``x in sm.bpopular``, where sm is a :class:`~difflib.SequenceMatcher` object.
 
 
 Deprecated functions and types of the C API
index 34c4375f869f861f709f57cd22c9b932a4a28b67..c7833829b44a7b972077550d75ce53789ad6e152 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1461,6 +1461,8 @@ 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.