diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-17 19:21:04 +0200 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-17 19:21:04 +0200 |
commit | 6e2990ea9f3b1f15c13c5c0e4edf3efbfb093947 (patch) | |
tree | 455426b9943fd1d1cdfe8a7ce52dd8a0ba1b0128 | |
parent | 5a0a4bcec575fa54203c46741fc37817694bf8d9 (diff) | |
download | cpython-6e2990ea9f3b1f15c13c5c0e4edf3efbfb093947.tar.gz |
Fix typo
-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 eb3d694cc6..f3e0461b77 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) |