diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-12-28 01:52:58 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-12-28 01:52:58 (GMT) |
commit | d8f8ee4af82f6d0b83c2706e92307ee358ba7173 (patch) | |
tree | bc0ffdcb675695081381241a569895db279173f9 /Include/unicodeobject.h | |
parent | fbaeca70e597229d89ccf65e26d5a9ff8f975b18 (diff) | |
download | cpython-d8f8ee4af82f6d0b83c2706e92307ee358ba7173.zip cpython-d8f8ee4af82f6d0b83c2706e92307ee358ba7173.tar.gz cpython-d8f8ee4af82f6d0b83c2706e92307ee358ba7173.tar.bz2 |
Fix name mangling of PyUnicode_ClearFreeList.
Diffstat (limited to 'Include/unicodeobject.h')
-rw-r--r-- | Include/unicodeobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index ee9fec1..d5964f1 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -296,7 +296,7 @@ typedef PY_UNICODE_TYPE Py_UNICODE; # define _PyUnicode_AsDefaultEncodedString _PyUnicodeUCS4_AsDefaultEncodedString # define _PyUnicode_Fini _PyUnicodeUCS4_Fini # define _PyUnicode_Init _PyUnicodeUCS4_Init -# define PyUnicode_ClearFreeList PyUnicodeUCS2_ClearFreelist +# define PyUnicode_ClearFreeList PyUnicodeUCS4_ClearFreelist # define _PyUnicode_IsAlpha _PyUnicodeUCS4_IsAlpha # define _PyUnicode_IsDecimalDigit _PyUnicodeUCS4_IsDecimalDigit # define _PyUnicode_IsDigit _PyUnicodeUCS4_IsDigit |