From 2b6c26ebe3eab15092b71f0c02962bcb89c9fb55 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Thu, 21 Mar 2013 19:36:26 -0400 Subject: [PATCH] Issue #13248: NEWS and What's New items --- Doc/whatsnew/3.4.rst | 4 +++- Misc/NEWS | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index ab0b163d1b90..30d3e705bd3b 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 34c4375f869f..c7833829b44a 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. -- 2.47.3