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 /PCbuild | |
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 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 29493e3..b00991e 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -475,6 +475,7 @@ <ClInclude Include="..\Objects\stringlib\fastsearch.h" /> <ClInclude Include="..\Objects\stringlib\find.h" /> <ClInclude Include="..\Objects\stringlib\partition.h" /> + <ClInclude Include="..\Objects\stringlib\replace.h" /> <ClInclude Include="..\Objects\stringlib\split.h" /> <ClInclude Include="..\Objects\unicodetype_db.h" /> <ClInclude Include="..\Parser\parser.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 09b4bb4..915fec5 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -378,6 +378,9 @@ <ClInclude Include="..\Objects\stringlib\partition.h"> <Filter>Objects</Filter> </ClInclude> + <ClInclude Include="..\Objects\stringlib\replace.h"> + <Filter>Objects</Filter> + </ClInclude> <ClInclude Include="..\Objects\stringlib\split.h"> <Filter>Objects</Filter> </ClInclude> |