This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author zach.ware
Recipients larry, zach.ware
Date 2015-04-14.18:03:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429034597.86.0.338121761612.issue23944@psf.upfronthosting.co.za>
In-reply-to
Content
Larry: Here's your sample:

/*[clinic input]
_winapi.CreateProcess

    application_name: Py_UNICODE(nullable=True)
    command_line: Py_UNICODE(nullable=True)
    proc_attrs: object
        Ignored internally, can be None.
    thread_attrs: object
        Ignored internally, can be None.
    inherit_handles: BOOL
    creation_flags: DWORD
    env_mapping: object
    current_directory: Py_UNICODE(nullable=True)
    startup_info: object
    /

Create a new process and its primary thread.

The return value is a tuple of the process handle, thread handle,
process ID, and thread ID.
[clinic start generated code]*/

static PyObject *
_winapi_CreateProcess_impl(PyModuleDef *module, Py_UNICODE *application_name, Py_UNICODE *command_line, PyObject *proc_attrs, PyObject *thread_attrs, BOOL inherit_handles, DWORD creation_flags, PyObject *env_mapping, Py_UNICODE *current_directory, PyObject *startup_info)
/*[clinic end generated code: output=c279c1271b4c45cf input=6667ea0bc7036472]*/
History
Date User Action Args
2015-04-14 18:03:17zach.waresetrecipients: + zach.ware, larry
2015-04-14 18:03:17zach.waresetmessageid: <1429034597.86.0.338121761612.issue23944@psf.upfronthosting.co.za>
2015-04-14 18:03:17zach.warelinkissue23944 messages
2015-04-14 18:03:17zach.warecreate