[Python-checkins] r80938 - python/branches/py3k/Include/unicodeobject.h

benjamin.peterson python-checkins at python.org
Fri May 7 22:21:27 CEST 2010


Author: benjamin.peterson
Date: Fri May  7 22:21:26 2010
New Revision: 80938

Log:
alias PyUnicode_CompareWithASCII

Modified:
   python/branches/py3k/Include/unicodeobject.h

Modified: python/branches/py3k/Include/unicodeobject.h
==============================================================================
--- python/branches/py3k/Include/unicodeobject.h	(original)
+++ python/branches/py3k/Include/unicodeobject.h	Fri May  7 22:21:26 2010
@@ -158,6 +158,7 @@
 # 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 @@
 # 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


More information about the Python-checkins mailing list