From: Andrew Kuchling Date: Sat, 15 Jun 2013 17:29:09 +0000 (-0400) Subject: Fix typo; clarify that the methods were removed entirely X-Git-Tag: v3.4.0a1~490^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0d0813a81678e4e8a416e8e964b710e51c0b5b7f;p=thirdparty%2FPython%2Fcpython.git Fix typo; clarify that the methods were removed entirely --- diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 016c5088e08b..92b2058bab14 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -222,8 +222,8 @@ Deprecated Python modules, functions and methods ------------------------------------------------ * :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. + :meth:`difflib.SequenceMatcher.isbpopular` were removed: use ``x in sm.bjunk`` and + ``x in sm.bpopular``, where *sm* is a :class:`~difflib.SequenceMatcher` object. * :func:`importlib.util.module_for_loader` is pending deprecation. Using :func:`importlib.util.module_to_load` and