mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Fix fastsearch for UCS2 and UCS4
* If needle is 0, try (p[0] >> 16) & 0xff for UCS4 * Disable fastsearch_memchr_1char() if needle is zero for UCS2 and UCS4
This commit is contained in:
parent
c5af7730e3
commit
8cc70dcf70
8 changed files with 15 additions and 2 deletions
|
@ -6,6 +6,7 @@
|
|||
#define FASTSEARCH asciilib_fastsearch
|
||||
#define STRINGLIB(F) asciilib_##F
|
||||
#define STRINGLIB_OBJECT PyUnicodeObject
|
||||
#define STRINGLIB_SIZEOF_CHAR 1
|
||||
#define STRINGLIB_CHAR Py_UCS1
|
||||
#define STRINGLIB_TYPE_NAME "unicode"
|
||||
#define STRINGLIB_PARSE_CODE "U"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue