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 /Doc/whatsnew | |
parent | d502a07fac728be3e1113da8cec21fd09865f2c8 (diff) | |
download | cpython-2b6c26ebe3eab15092b71f0c02962bcb89c9fb55.zip cpython-2b6c26ebe3eab15092b71f0c02962bcb89c9fb55.tar.gz cpython-2b6c26ebe3eab15092b71f0c02962bcb89c9fb55.tar.bz2 |
Issue #13248: NEWS and What's New items
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 4 |
1 files changed, 3 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 |