[Python-checkins] cpython: Issue #13248: NEWS and What's New items

terry.reedy python-checkins at python.org
Fri Mar 22 00:36:57 CET 2013


http://hg.python.org/cpython/rev/62a988b3bf2e
changeset:   82874:62a988b3bf2e
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Thu Mar 21 19:36:26 2013 -0400
summary:
  Issue #13248: NEWS and What's New items

files:
  Doc/whatsnew/3.4.rst |  4 +++-
  Misc/NEWS            |  2 ++
  2 files changed, 5 insertions(+), 1 deletions(-)


diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -185,7 +185,9 @@
 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
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1461,6 +1461,8 @@
 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.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list