summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-03-19 19:44:04 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2013-03-19 19:44:04 -0400
commitf027a204b0eda96ac6cc2a6ebf9faaab209a981a (patch)
tree3046d959fe8321e419cecf157acccc00bde27dd3 /Lib
parentca038562be7affd9668365ecf12051b411679577 (diff)
downloadcpython-git-f027a204b0eda96ac6cc2a6ebf9faaab209a981a.tar.gz
Issue #13248: removed deprecated and undocumented difflib.isbjunk, isbpopular.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/difflib.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/Lib/difflib.py b/Lib/difflib.py
index db5f82ec03..809774489f 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].