From: Terry Jan Reedy Date: Tue, 19 Mar 2013 23:44:04 +0000 (-0400) Subject: Issue #13248: removed deprecated and undocumented difflib.isbjunk, isbpopular. X-Git-Tag: v3.4.0a1~1148 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f027a204b0eda96ac6cc2a6ebf9faaab209a981a;p=thirdparty%2FPython%2Fcpython.git Issue #13248: removed deprecated and undocumented difflib.isbjunk, isbpopular. --- diff --git a/Lib/difflib.py b/Lib/difflib.py index db5f82ec0350..809774489fb4 100644 --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -336,20 +336,6 @@ class SequenceMatcher: 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].