Skip to content

Commit f2c5484

Browse files
committed
Merged revisions 77461 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77461 | antoine.pitrou | 2010-01-13 08:55:48 +0100 (mer., 13 janv. 2010) | 5 lines Issue #7622: Improve the split(), rsplit(), splitlines() and replace() methods of bytes, bytearray and unicode objects by using a common implementation based on stringlib's fast search. Patch by Florent Xicluna. ........
1 parent 5efea04 commit f2c5484

File tree

16 files changed

+1123
-1418
lines changed

16 files changed

+1123
-1418
lines changed

Makefile.pre.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,7 @@ BYTESTR_DEPS = \
582582
$(srcdir)/Objects/stringlib/fastsearch.h \
583583
$(srcdir)/Objects/stringlib/find.h \
584584
$(srcdir)/Objects/stringlib/partition.h \
585+
$(srcdir)/Objects/stringlib/split.h \
585586
$(srcdir)/Objects/stringlib/stringdefs.h \
586587
$(srcdir)/Objects/stringlib/string_format.h \
587588
$(srcdir)/Objects/stringlib/transmogrify.h \

Misc/NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ What's New in Python 3.2 Alpha 1?
1212
Core and Builtins
1313
-----------------
1414

15+
- Issue #7622: Improve the split(), rsplit(), splitlines() and replace()
16+
methods of bytes, bytearray and unicode objects by using a common
17+
implementation based on stringlib's fast search. Patch by Florent Xicluna.
18+
1519
- Issue #7632: Fix a crash in dtoa.c that occurred in debug builds
1620
when parsing certain long numeric strings corresponding to subnormal
1721
values. Also fix a number of bugs in dtoa.c that could lead to

0 commit comments

Comments
 (0)