[Python-checkins] cpython: Silence compilation warnings on Windows

amaury.forgeotdarc python-checkins at python.org
Fri Jan 13 22:12:57 CET 2012


http://hg.python.org/cpython/rev/8e538ed41766
changeset:   74368:8e538ed41766
user:        Amaury Forgeot d'Arc <amauryfa at gmail.com>
date:        Fri Jan 13 22:12:37 2012 +0100
summary:
  Silence compilation warnings on Windows

files:
  Include/unicodeobject.h |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -2024,11 +2024,11 @@
     );
 
 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(

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list