commit | c47adb04b30feea670e87b28efb286db11babaa6 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Fri Oct 07 20:55:35 2011 +0200 |
committer | Martin v. Löwis <martin@v.loewis.de> | Fri Oct 07 20:55:35 2011 +0200 |
tree | 7b7a3c7fa6227d578a4f1bddac23163170a95c10 | |
parent | dd07732af5793d7cd6fcd59c470f519709ff3eec [diff] [blame] |
Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE.
diff --git a/Objects/stringlib/eq.h b/Objects/stringlib/eq.h index dd67128..8e79a43 100644 --- a/Objects/stringlib/eq.h +++ b/Objects/stringlib/eq.h
@@ -30,5 +30,5 @@ PyUnicode_GET_LENGTH(a) == 1) return 1; return memcmp(PyUnicode_1BYTE_DATA(a), PyUnicode_1BYTE_DATA(b), - PyUnicode_GET_LENGTH(a) * PyUnicode_CHARACTER_SIZE(a)) == 0; + PyUnicode_GET_LENGTH(a) * PyUnicode_KIND(a)) == 0; }