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 damon-atkins
Recipients asvetlov, chris.jerdonek, cvrebert, damon-atkins, docs@python, eryksun, ned.deily, paul.moore, pepalogik, python-dev, steve.dower, tim.golden, wolma, zach.ware
Date 2018-06-14.03:33:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1528947209.48.0.947875510639.issue15533@psf.upfronthosting.co.za>
In-reply-to
Content
From https://msdn.microsoft.com/en-us/library/windows/desktop/ms682425.aspx

Note Python is using CreateProcess(), consider using CreateProcessW()

The Unicode version of this function, CreateProcessW, can modify the contents of this string. Therefore, this parameter cannot be a pointer to read-only memory (such as a const variable or a literal string). If this parameter is a constant string, the function may cause an access violation.
History
Date User Action Args
2018-06-14 03:33:29damon-atkinssetrecipients: + damon-atkins, paul.moore, tim.golden, ned.deily, cvrebert, asvetlov, chris.jerdonek, docs@python, python-dev, zach.ware, eryksun, steve.dower, pepalogik, wolma
2018-06-14 03:33:29damon-atkinssetmessageid: <1528947209.48.0.947875510639.issue15533@psf.upfronthosting.co.za>
2018-06-14 03:33:29damon-atkinslinkissue15533 messages
2018-06-14 03:33:28damon-atkinscreate