diff options
author | Thaddeus1499 <104600742+Thaddeus1499@users.noreply.github.com> | 2022-05-02 18:21:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-02 18:21:51 (GMT) |
commit | c8ab1633fce42e84734179d267a1cd01e3fef323 (patch) | |
tree | a1141b42117e01aa05cf2e96790421244136c79e /Objects/stringlib | |
parent | bab4d0bb1695ec8e4d89efe14c843c5080d46735 (diff) | |
download | cpython-c8ab1633fce42e84734179d267a1cd01e3fef323.zip cpython-c8ab1633fce42e84734179d267a1cd01e3fef323.tar.gz cpython-c8ab1633fce42e84734179d267a1cd01e3fef323.tar.bz2 |
[3.10] bpo-43504: Remove effbot urls (GH-26308) (#92161)
* [3.10] Remove effbot urls (GH-26308).
(cherry picked from commit e9f66aedf44ccc3be27975cfb070a44ce6a6bd13)
Co-authored-by: E-Paine <63801254+E-Paine@users.noreply.github.com>
Diffstat (limited to 'Objects/stringlib')
-rw-r--r-- | Objects/stringlib/fastsearch.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Objects/stringlib/fastsearch.h b/Objects/stringlib/fastsearch.h index 6574720..7b8be5d 100644 --- a/Objects/stringlib/fastsearch.h +++ b/Objects/stringlib/fastsearch.h @@ -4,7 +4,8 @@ /* fast search/count implementation, based on a mix between boyer- moore and horspool, with a few more bells and whistles on the top. - for some more background, see: http://effbot.org/zone/stringlib.htm */ + for some more background, see: + https://web.archive.org/web/20201107074620/http://effbot.org/zone/stringlib.htm */ /* note: fastsearch may access s[n], which isn't a problem when using Python's ordinary string types, but may cause problems if you're |