summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/whatsnew/3.4.rst4
-rw-r--r--Misc/NEWS2
2 files changed, 5 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index ab0b163..30d3e70 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -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
diff --git a/Misc/NEWS b/Misc/NEWS
index 34c4375..c783382 100644
--- 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.