diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-04-13 19:45:04 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-04-13 19:45:04 (GMT) |
commit | e2cef885a25967605007248cb158671b765df002 (patch) | |
tree | d8e0596e3acc23cdf93c56fc419c846dd585779d /Makefile.pre.in | |
parent | a707f299cb325a8de7bb7cae746b264573bc1cfc (diff) | |
download | cpython-e2cef885a25967605007248cb158671b765df002.zip cpython-e2cef885a25967605007248cb158671b765df002.tar.gz cpython-e2cef885a25967605007248cb158671b765df002.tar.bz2 |
Issue #16061: Speed up str.replace() for replacing 1-character strings.
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 534ddc0..ab56e3f 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -726,6 +726,7 @@ UNICODE_DEPS = \ $(srcdir)/Objects/stringlib/find_max_char.h \ $(srcdir)/Objects/stringlib/localeutil.h \ $(srcdir)/Objects/stringlib/partition.h \ + $(srcdir)/Objects/stringlib/replace.h \ $(srcdir)/Objects/stringlib/split.h \ $(srcdir)/Objects/stringlib/ucs1lib.h \ $(srcdir)/Objects/stringlib/ucs2lib.h \ |