diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-21 23:36:26 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-21 23:36:26 (GMT) |
commit | 2b6c26ebe3eab15092b71f0c02962bcb89c9fb55 (patch) | |
tree | 2dbb3d9e41ff1ac131f0d90f84012db813f0316c | |
parent | d502a07fac728be3e1113da8cec21fd09865f2c8 (diff) | |
download | cpython-2b6c26ebe3eab15092b71f0c02962bcb89c9fb55.zip cpython-2b6c26ebe3eab15092b71f0c02962bcb89c9fb55.tar.gz cpython-2b6c26ebe3eab15092b71f0c02962bcb89c9fb55.tar.bz2 |
Issue #13248: NEWS and What's New items
-rw-r--r-- | Doc/whatsnew/3.4.rst | 4 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
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 @@ -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. |