summaryrefslogtreecommitdiff
path: root/Programs
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-08-01 12:28:48 +0200
committerVictor Stinner <victor.stinner@gmail.com>2014-08-01 12:28:48 +0200
commitf6a271ae980d2f3fb450f745b8f87624378156c4 (patch)
treeae0c09042455826ae38875945dadd4919ca8f235 /Programs
parentc6f8c0a1de448e7ca62ece1d21f089194d31f0d9 (diff)
downloadcpython-git-f6a271ae980d2f3fb450f745b8f87624378156c4.tar.gz
Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename
``_Py_wchar2char()`` to :c:func:`Py_EncodeLocale`, and document these functions.
Diffstat (limited to 'Programs')
-rw-r--r--Programs/python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Programs/python.c b/Programs/python.c
index 9811c01d49..2e5e4e368f 100644
--- a/Programs/python.c
+++ b/Programs/python.c
@@ -52,7 +52,7 @@ main(int argc, char **argv)
setlocale(LC_ALL, "");
for (i = 0; i < argc; i++) {
- argv_copy[i] = _Py_char2wchar(argv[i], NULL);
+ argv_copy[i] = Py_DecodeLocale(argv[i], NULL);
if (!argv_copy[i]) {
PyMem_RawFree(oldloc);
fprintf(stderr, "Fatal Python error: "