diff options
author | Raymond Hettinger <python@rcn.com> | 2011-02-24 11:15:36 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-02-24 11:15:36 (GMT) |
commit | 8edd2e972092f2aa0f68224c313ace5e2e38411c (patch) | |
tree | f4065c71ad592935f80031d1b602969f61b10e64 /Doc/whatsnew | |
parent | edf5132dfe43ee94aaabe84163fc4aca825903a8 (diff) | |
download | cpython-8edd2e972092f2aa0f68224c313ace5e2e38411c.zip cpython-8edd2e972092f2aa0f68224c313ace5e2e38411c.tar.gz cpython-8edd2e972092f2aa0f68224c313ace5e2e38411c.tar.bz2 |
Issue #11296: rsplit() mentioned twice for the same change.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index d9af4e7..3829ce1 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -2354,7 +2354,7 @@ A number of small performance enhancements have been added: (Contributed by Antoine Pitrou; :issue:`3001`.) * The fast-search algorithm in stringlib is now used by the :meth:`split`, - :meth:`rsplit`, :meth:`splitlines` and :meth:`replace` methods on + :meth:`splitlines` and :meth:`replace` methods on :class:`bytes`, :class:`bytearray` and :class:`str` objects. Likewise, the algorithm is also used by :meth:`rfind`, :meth:`rindex`, :meth:`rsplit` and :meth:`rpartition`. |