mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-11150)
This commit is contained in:
parent
7b36016a15
commit
afb3e71a17
9 changed files with 110 additions and 98 deletions
|
@ -995,13 +995,14 @@ process ID, and thread ID.
|
|||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
_winapi_CreateProcess_impl(PyObject *module, Py_UNICODE *application_name,
|
||||
_winapi_CreateProcess_impl(PyObject *module,
|
||||
const Py_UNICODE *application_name,
|
||||
PyObject *command_line, PyObject *proc_attrs,
|
||||
PyObject *thread_attrs, BOOL inherit_handles,
|
||||
DWORD creation_flags, PyObject *env_mapping,
|
||||
Py_UNICODE *current_directory,
|
||||
const Py_UNICODE *current_directory,
|
||||
PyObject *startup_info)
|
||||
/*[clinic end generated code: output=2ecaab46a05e3123 input=42ac293eaea03fc4]*/
|
||||
/*[clinic end generated code: output=9b2423a609230132 input=42ac293eaea03fc4]*/
|
||||
{
|
||||
PyObject *ret = NULL;
|
||||
BOOL result;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue