summaryrefslogtreecommitdiff
path: root/Modules/python.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/python.c')
-rw-r--r--Modules/python.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/Modules/python.c b/Modules/python.c
index 488aa791d7..9a71cd06da 100644
--- a/Modules/python.c
+++ b/Modules/python.c
@@ -41,19 +41,10 @@ main(int argc, char **argv)
oldloc = strdup(setlocale(LC_ALL, NULL));
setlocale(LC_ALL, "");
for (i = 0; i < argc; i++) {
-#ifdef __APPLE__
- /* Use utf-8 on Mac OS X */
- PyObject *unicode = PyUnicode_FromString(argv[i]);
- if (!unicode)
- return 1;
- argv_copy[i] = PyUnicode_AsWideCharString(unicode, NULL);
- Py_DECREF(unicode);
-#else
argv_copy[i] = _Py_char2wchar(argv[i]);
-#endif
- argv_copy2[i] = argv_copy[i];
if (!argv_copy[i])
return 1;
+ argv_copy2[i] = argv_copy[i];
}
setlocale(LC_ALL, oldloc);
free(oldloc);