diff options
| author | Brett Cannon <brett@python.org> | 2013-06-15 17:38:07 (GMT) |
|---|---|---|
| committer | Brett Cannon <brett@python.org> | 2013-06-15 17:38:07 (GMT) |
| commit | fc06443c980e8ac5ebc2a1a6950cd7a85c49b5aa (patch) | |
| tree | e8c09ed44ae656f80523549d53dfc29fe96ef707 | |
| parent | cc39b1ed1de3050ace054b9ecf5cab494062a8ef (diff) | |
| parent | 0d0813a81678e4e8a416e8e964b710e51c0b5b7f (diff) | |
| download | cpython-fc06443c980e8ac5ebc2a1a6950cd7a85c49b5aa.zip cpython-fc06443c980e8ac5ebc2a1a6950cd7a85c49b5aa.tar.gz cpython-fc06443c980e8ac5ebc2a1a6950cd7a85c49b5aa.tar.bz2 | |
merge
| -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 |
