diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-24 20:38:25 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-24 20:38:25 (GMT) |
commit | 09f24bb408dec8d965596b568bfe65d5b7b76a0a (patch) | |
tree | 1e80e82ec8e84f545ada571498d2cb5302e37a51 /Include | |
parent | df6d6cb0facc32a5456f72e973f9e33660229612 (diff) | |
download | cpython-09f24bb408dec8d965596b568bfe65d5b7b76a0a.zip cpython-09f24bb408dec8d965596b568bfe65d5b7b76a0a.tar.gz cpython-09f24bb408dec8d965596b568bfe65d5b7b76a0a.tar.bz2 |
Issue #8761: Mangle PyUnicode_CompareWithASCIIString function name for
narrow/wide unicode build.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/unicodeobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index 42da8c3..0a3cfc6 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -159,7 +159,7 @@ typedef PY_UNICODE_TYPE Py_UNICODE; # define PyUnicode_AsWideCharString PyUnicodeUCS2_AsWideCharString # define PyUnicode_ClearFreeList PyUnicodeUCS2_ClearFreelist # define PyUnicode_Compare PyUnicodeUCS2_Compare -# define PyUnicode_CompareWithASCII PyUnicodeUCS2_CompareASCII +# define PyUnicode_CompareWithASCIIString PyUnicodeUCS2_CompareWithASCIIString # define PyUnicode_Concat PyUnicodeUCS2_Concat # define PyUnicode_Append PyUnicodeUCS2_Append # define PyUnicode_AppendAndDel PyUnicodeUCS2_AppendAndDel @@ -243,7 +243,7 @@ typedef PY_UNICODE_TYPE Py_UNICODE; # define PyUnicode_AsWideCharString PyUnicodeUCS4_AsWideCharString # define PyUnicode_ClearFreeList PyUnicodeUCS4_ClearFreelist # define PyUnicode_Compare PyUnicodeUCS4_Compare -# define PyUnicode_CompareWithASCII PyUnicodeUCS4_CompareWithASCII +# define PyUnicode_CompareWithASCIIString PyUnicodeUCS4_CompareWithASCIIString # define PyUnicode_Concat PyUnicodeUCS4_Concat # define PyUnicode_Append PyUnicodeUCS4_Append # define PyUnicode_AppendAndDel PyUnicodeUCS4_AppendAndDel |