diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-03-14 01:34:54 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-03-14 01:34:54 (GMT) |
commit | 6dfc632f1f8407079d728bc71c10704d078662e2 (patch) | |
tree | 51f38371bfc6aabbc0f96ffc99abd0dbff4550ed /Doc/whatsnew | |
parent | 21317b654ed2e6ba131be02f08a99751a454bb99 (diff) | |
download | cpython-6dfc632f1f8407079d728bc71c10704d078662e2.zip cpython-6dfc632f1f8407079d728bc71c10704d078662e2.tar.gz cpython-6dfc632f1f8407079d728bc71c10704d078662e2.tar.bz2 |
whatsnew: difflib.isbjunk &c were removed, not deprecated.
Also move NEWS item to correct position (it was in 3.3).
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 1bda6fa..939d491 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -1503,10 +1503,6 @@ using ``-Wd``). Deprecated Python Modules, Functions and Methods ------------------------------------------------ -* :meth:`difflib.SequenceMatcher.isbjunk` and - :meth:`difflib.SequenceMatcher.isbpopular` were removed: use ``x in sm.bjunk`` and - ``x in sm.bpopular``, where *sm* is a :class:`~difflib.SequenceMatcher` object. - * As mentioned in :ref:`whatsnew-pep-451`, a number of :mod:`importilb` methods and functions are deprecated: :meth:`importlib.find_loader` is replaced by :func:`importlib.util.find_spec`; @@ -1612,6 +1608,12 @@ removed: * :class:`inspect.Signature`: positional-only parameters are now required to have a valid name. +* :meth:`difflib.SequenceMatcher.isbjunk` and + :meth:`difflib.SequenceMatcher.isbpopular` were deprecated in 3.2, and have + now been removed: use ``x in sm.bjunk`` and + ``x in sm.bpopular``, where *sm* is a :class:`~difflib.SequenceMatcher` object + (:issue:`13248`). + Code Cleanups ------------- |