summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-10-15 11:15:54 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-10-15 11:15:54 (GMT)
commit5d1e3438cde1d93db84f941c2226f14806c3b8b6 (patch)
treed2d129cd2d0208e0df46e903de59fa46f2701a00 /Include
parentd449a8ad875c89ebf97a5ca56756f13329187366 (diff)
downloadcpython-5d1e3438cde1d93db84f941c2226f14806c3b8b6.zip
cpython-5d1e3438cde1d93db84f941c2226f14806c3b8b6.tar.gz
cpython-5d1e3438cde1d93db84f941c2226f14806c3b8b6.tar.bz2
Mark _Py_char2wchar() input argument as constant
Diffstat (limited to 'Include')
-rw-r--r--Include/fileutils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/fileutils.h b/Include/fileutils.h
index a232460..cb15936 100644
--- a/Include/fileutils.h
+++ b/Include/fileutils.h
@@ -6,7 +6,7 @@ extern "C" {
#endif
PyAPI_FUNC(wchar_t *) _Py_char2wchar(
- char *arg);
+ const char *arg);
PyAPI_FUNC(char*) _Py_wchar2char(
const wchar_t *text);