(original) (raw)

changeset: 82874:62a988b3bf2e user: Terry Jan Reedy tjreedy@udel.edu date: Thu Mar 21 19:36:26 2013 -0400 files: Doc/whatsnew/3.4.rst Misc/NEWS description: Issue #13248: NEWS and What's New items diff -r 95fb7b66107e -r 62a988b3bf2e Doc/whatsnew/3.4.rst --- a/Doc/whatsnew/3.4.rst Fri Mar 22 00:06:20 2013 +0100 +++ b/Doc/whatsnew/3.4.rst Thu Mar 21 19:36:26 2013 -0400 @@ -185,7 +185,9 @@ 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 -r 95fb7b66107e -r 62a988b3bf2e Misc/NEWS --- a/Misc/NEWS Fri Mar 22 00:06:20 2013 +0100 +++ b/Misc/NEWS Thu Mar 21 19:36:26 2013 -0400 @@ -1461,6 +1461,8 @@ 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. /tjreedy@udel.edu