Merged revisions 80105 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r80105 | victor.stinner | 2010-04-16 13:45:13 +0200 (ven., 16 avril 2010) | 3 lines
Issue #8412: os.system() now accepts bytes, bytearray and str with
surrogates.
........
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 502bf62..bba75af 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -2814,18 +2814,23 @@
wchar_t *command;
if (!PyArg_ParseTuple(args, "u:system", &command))
return NULL;
-#else
- char *command;
- if (!PyArg_ParseTuple(args, "s:system", &command))
- return NULL;
-#endif
+
Py_BEGIN_ALLOW_THREADS
-#ifdef MS_WINDOWS
sts = _wsystem(command);
-#else
- sts = system(command);
-#endif
Py_END_ALLOW_THREADS
+#else
+ PyObject *command_obj;
+ char *command;
+ if (!PyArg_ParseTuple(args, "O&:system",
+ PyUnicode_FSConverter, &command_obj))
+ return NULL;
+
+ command = bytes2str(command_obj, 1);
+ Py_BEGIN_ALLOW_THREADS
+ sts = system(command);
+ Py_END_ALLOW_THREADS
+ release_bytes(command_obj);
+#endif
return PyLong_FromLong(sts);
}
#endif