From 77b1ecf0adb0edf51958ebeef8e93ba3cfea5601 Mon Sep 17 00:00:00 2001 From: Amaury Forgeot d'Arc Date: Fri, 13 Jan 2012 22:12:37 +0100 Subject: [PATCH] Silence compilation warnings on Windows --- Include/unicodeobject.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index 39dfba9930..e42631c8ad 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -2024,11 +2024,11 @@ PyAPI_FUNC(int) _PyUnicode_ToUpperFull( ); PyAPI_FUNC(int) _PyUnicode_IsCaseIgnorable( - const Py_UCS4 ch /* Unicode character */ + Py_UCS4 ch /* Unicode character */ ); PyAPI_FUNC(int) _PyUnicode_IsCased( - const Py_UCS4 ch /* Unicode character */ + Py_UCS4 ch /* Unicode character */ ); PyAPI_FUNC(int) _PyUnicode_ToDecimalDigit( -- 2.40.0