diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-02 21:12:58 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-02 21:12:58 (GMT) |
commit | 5b7139aab41becad7ad736bd9ff2332960bf67f9 (patch) | |
tree | 9d3d3e7da0c0073af1fd2784fa7892d3222f9e88 /Misc | |
parent | d3e323215c6d9f303bf42875f98e365e2ff1734f (diff) | |
download | cpython-5b7139aab41becad7ad736bd9ff2332960bf67f9.zip cpython-5b7139aab41becad7ad736bd9ff2332960bf67f9.tar.gz cpython-5b7139aab41becad7ad736bd9ff2332960bf67f9.tar.bz2 |
Issue #7462: Implement the stringlib fast search algorithm for the `rfind`,
`rindex`, `rsplit` and `rpartition` methods. Patch by Florent Xicluna.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 2? Core and Builtins ----------------- +- Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, + `rindex`, `rsplit` and `rpartition` methods. Patch by Florent Xicluna. + - Issue #5080: A number of functions and methods previously produced a DeprecationWarning when passed a float argument where an integer was expected. These functions and methods now raise TypeError instead. |