[Python-checkins] cpython: Issue #13248: removed deprecated and undocumented difflib.isbjunk, isbpopular.

terry.reedy python-checkins at python.org
Wed Mar 20 00:44:35 CET 2013


http://hg.python.org/cpython/rev/612d8bbcfa3a
changeset:   82807:612d8bbcfa3a
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Tue Mar 19 19:44:04 2013 -0400
summary:
  Issue #13248: removed deprecated and undocumented difflib.isbjunk, isbpopular.

files:
  Lib/difflib.py |  14 --------------
  1 files changed, 0 insertions(+), 14 deletions(-)


diff --git a/Lib/difflib.py b/Lib/difflib.py
--- a/Lib/difflib.py
+++ b/Lib/difflib.py
@@ -336,20 +336,6 @@
             for elt in popular: # ditto; as fast for 1% deletion
                 del b2j[elt]
 
-    def isbjunk(self, item):
-        "Deprecated; use 'item in SequenceMatcher().bjunk'."
-        warnings.warn("'SequenceMatcher().isbjunk(item)' is deprecated;\n"
-                      "use 'item in SMinstance.bjunk' instead.",
-                      DeprecationWarning, 2)
-        return item in self.bjunk
-
-    def isbpopular(self, item):
-        "Deprecated; use 'item in SequenceMatcher().bpopular'."
-        warnings.warn("'SequenceMatcher().isbpopular(item)' is deprecated;\n"
-                      "use 'item in SMinstance.bpopular' instead.",
-                      DeprecationWarning, 2)
-        return item in self.bpopular
-
     def find_longest_match(self, alo, ahi, blo, bhi):
         """Find longest matching block in a[alo:ahi] and b[blo:bhi].
 

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


More information about the Python-checkins mailing list