diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2012-01-13 21:12:37 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2012-01-13 21:12:37 (GMT) |
commit | 77b1ecf0adb0edf51958ebeef8e93ba3cfea5601 (patch) | |
tree | a914acb27bf559904cba4847c3c11cd3dbd49d01 /Include | |
parent | 0a239e9191e7a33b73abf843c2f9c3cc0c6eeab2 (diff) | |
download | cpython-77b1ecf0adb0edf51958ebeef8e93ba3cfea5601.zip cpython-77b1ecf0adb0edf51958ebeef8e93ba3cfea5601.tar.gz cpython-77b1ecf0adb0edf51958ebeef8e93ba3cfea5601.tar.bz2 |
Silence compilation warnings on Windows
Diffstat (limited to 'Include')
-rw-r--r-- | Include/unicodeobject.h | 4 |
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( |