summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2012-01-13 21:12:37 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2012-01-13 21:12:37 (GMT)
commit77b1ecf0adb0edf51958ebeef8e93ba3cfea5601 (patch)
treea914acb27bf559904cba4847c3c11cd3dbd49d01 /Include
parent0a239e9191e7a33b73abf843c2f9c3cc0c6eeab2 (diff)
downloadcpython-77b1ecf0adb0edf51958ebeef8e93ba3cfea5601.zip
cpython-77b1ecf0adb0edf51958ebeef8e93ba3cfea5601.tar.gz
cpython-77b1ecf0adb0edf51958ebeef8e93ba3cfea5601.tar.bz2
Silence compilation warnings on Windows
Diffstat (limited to 'Include')
-rw-r--r--Include/unicodeobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index 39dfba9..e42631c 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(