[Python-checkins] cpython: Fix typo; clarify that the methods were removed entirely

andrew.kuchling python-checkins at python.org
Sat Jun 15 19:29:19 CEST 2013


http://hg.python.org/cpython/rev/5d57f2deffba
changeset:   84143:5d57f2deffba
user:        Andrew Kuchling <amk at amk.ca>
date:        Sat Jun 15 13:29:09 2013 -0400
summary:
  Fix typo; clarify that the methods were removed entirely

files:
  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
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -222,8 +222,8 @@
 ------------------------------------------------
 
 * :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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list