diff options
author | Andrew Kuchling <amk@amk.ca> | 2013-06-15 17:29:09 (GMT) |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2013-06-15 17:29:09 (GMT) |
commit | 0d0813a81678e4e8a416e8e964b710e51c0b5b7f (patch) | |
tree | 23cd905d603e8ef1f6bef42659b4fa763ba454b6 /Doc/whatsnew | |
parent | 4f4088eb6f768b0af66d6cf682651d7c6a8011b1 (diff) | |
download | cpython-0d0813a81678e4e8a416e8e964b710e51c0b5b7f.zip cpython-0d0813a81678e4e8a416e8e964b710e51c0b5b7f.tar.gz cpython-0d0813a81678e4e8a416e8e964b710e51c0b5b7f.tar.bz2 |
Fix typo; clarify that the methods were removed entirely
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 016c508..92b2058 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 |