Lines Matching defs:arguments
2133 "Execute an executable path with arguments, replacing current process.\n"
2177 "Execute an executable path with arguments, replacing current process.\n"
7205 " arguments=<unrepresentable>, cwd=None, show_cmd=1)\n"
7217 "\"arguments\" is passed to the application, but should be omitted if the\n"
7240 const Py_UNICODE *operation, const Py_UNICODE *arguments,
7247 static const char * const _keywords[] = {"filepath", "operation", "arguments", "cwd", "show_cmd", NULL};
7253 const Py_UNICODE *arguments = NULL;
7286 _PyArg_BadArgument("startfile", "argument 'arguments'", "str", args[2]);
7290 arguments = _PyUnicode_AsUnicode(args[2]);
7292 arguments = PyUnicode_AsWideCharString(args[2], NULL);
7294 if (arguments == NULL) {
7314 return_value = os_startfile_impl(module, &filepath, operation, arguments, &cwd, show_cmd);
7323 /* Cleanup for arguments */
7325 PyMem_Free((void *)arguments);
8336 PyErr_SetString(PyExc_TypeError, "is_symlink() takes no arguments");