diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-05-07 20:21:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-05-07 20:21:26 (GMT) |
commit | ad465f904ba85b94211054881a41d7230474ebc7 (patch) | |
tree | 81b84e5464e66590ee0895c01e9b8907cd98603e /Include | |
parent | 8d26b0be6dba383c8aa8c9496da9eccff630238e (diff) | |
download | cpython-ad465f904ba85b94211054881a41d7230474ebc7.zip cpython-ad465f904ba85b94211054881a41d7230474ebc7.tar.gz cpython-ad465f904ba85b94211054881a41d7230474ebc7.tar.bz2 |
alias PyUnicode_CompareWithASCII
Diffstat (limited to 'Include')
-rw-r--r-- | Include/unicodeobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index 290034a..8e62c8b 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -158,6 +158,7 @@ typedef PY_UNICODE_TYPE Py_UNICODE; # define PyUnicode_AsWideChar PyUnicodeUCS2_AsWideChar # define PyUnicode_ClearFreeList PyUnicodeUCS2_ClearFreelist # define PyUnicode_Compare PyUnicodeUCS2_Compare +# define PyUnicode_CompareWithASCII PyUnicodeUCS2_CompareASCII # define PyUnicode_Concat PyUnicodeUCS2_Concat # define PyUnicode_Append PyUnicodeUCS2_Append # define PyUnicode_AppendAndDel PyUnicodeUCS2_AppendAndDel @@ -257,6 +258,7 @@ typedef PY_UNICODE_TYPE Py_UNICODE; # define PyUnicode_AsWideChar PyUnicodeUCS4_AsWideChar # define PyUnicode_ClearFreeList PyUnicodeUCS4_ClearFreelist # define PyUnicode_Compare PyUnicodeUCS4_Compare +# define PyUnicode_CompareWithASCII PyUnicodeUCS4_CompareWithASCII # define PyUnicode_Concat PyUnicodeUCS4_Concat # define PyUnicode_Append PyUnicodeUCS4_Append # define PyUnicode_AppendAndDel PyUnicodeUCS4_AppendAndDel |