From: Terry Jan Reedy Date: Thu, 21 Mar 2013 23:36:26 +0000 (-0400) Subject: Issue #13248: NEWS and What's New items X-Git-Tag: v3.4.0a1~1117 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b6c26ebe3eab15092b71f0c02962bcb89c9fb55;p=python Issue #13248: NEWS and What's New items --- diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index ab0b163d1b..30d3e705bd 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 34c4375f86..c7833829b4 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.