diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-17 17:21:04 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-17 17:21:04 (GMT) |
commit | 5b9f4c1539aee9107e4958eaa50ab205fd6a72e4 (patch) | |
tree | 1fedbe398896be568f1a5266f5026fdc97d9a4b6 /Objects | |
parent | 897d05922102ff499d17b063e6f59ed1770091dc (diff) | |
download | cpython-5b9f4c1539aee9107e4958eaa50ab205fd6a72e4.zip cpython-5b9f4c1539aee9107e4958eaa50ab205fd6a72e4.tar.gz cpython-5b9f4c1539aee9107e4958eaa50ab205fd6a72e4.tar.bz2 |
Fix typo
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/stringlib/fastsearch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringlib/fastsearch.h b/Objects/stringlib/fastsearch.h index eb3d694..f3e0461 100644 --- a/Objects/stringlib/fastsearch.h +++ b/Objects/stringlib/fastsearch.h @@ -115,7 +115,7 @@ FASTSEARCH(const STRINGLIB_CHAR* s, Py_ssize_t n, unsigned char needle; needle = p[0] & 0xff; #if STRINGLIB_SIZEOF_CHAR > 1 - /* If looking for a multiple of 256, we'd have two + /* If looking for a multiple of 256, we'd have too many false positives looking for the '\0' byte in UCS2 and UCS4 representations. */ if (needle != 0) |