diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-13 08:07:53 +0000 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-13 08:07:53 +0000 |
commit | 26447c09d91747bda7e3589685ede476c1faab4c (patch) | |
tree | 5ecdbcece85d01faa6112d70f99e08910a0b514b /Makefile.pre.in | |
parent | 67a22e9d4339c22b09075d72c094264846e4e4d9 (diff) | |
download | cpython-26447c09d91747bda7e3589685ede476c1faab4c.tar.gz |
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.
........
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 86d077c285..638776cd97 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -582,6 +582,7 @@ BYTESTR_DEPS = \ $(srcdir)/Objects/stringlib/fastsearch.h \ $(srcdir)/Objects/stringlib/find.h \ $(srcdir)/Objects/stringlib/partition.h \ + $(srcdir)/Objects/stringlib/split.h \ $(srcdir)/Objects/stringlib/stringdefs.h \ $(srcdir)/Objects/stringlib/string_format.h \ $(srcdir)/Objects/stringlib/transmogrify.h \ |