diff options
author | E-Paine <63801254+E-Paine@users.noreply.github.com> | 2021-05-22 12:09:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-22 12:09:54 (GMT) |
commit | e9f66aedf44ccc3be27975cfb070a44ce6a6bd13 (patch) | |
tree | 36f72875a329fa2785a8c3a60fdc15a8954ef09e /Objects | |
parent | a9e43615c2e1fc5dd60063c1509e8b1c5daad095 (diff) | |
download | cpython-e9f66aedf44ccc3be27975cfb070a44ce6a6bd13.zip cpython-e9f66aedf44ccc3be27975cfb070a44ce6a6bd13.tar.gz cpython-e9f66aedf44ccc3be27975cfb070a44ce6a6bd13.tar.bz2 |
Remove effbot urls (GH-26308)
Diffstat (limited to 'Objects')
-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 |