From d8f8ee4af82f6d0b83c2706e92307ee358ba7173 Mon Sep 17 00:00:00 2001 From: Alexandre Vassalotti Date: Sun, 28 Dec 2008 01:52:58 +0000 Subject: [PATCH] Fix name mangling of PyUnicode_ClearFreeList. --- Include/unicodeobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index ee9fec16fe..d5964f1fe9 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 -- 2.50.1