[issue15028] PySys_SetArgv escapes quotes in argv[]

2020-04-26 Thread Zachary Ware
Zachary Ware added the comment: Lacking a response from the OP, I'm closing the issue. -- nosy: +zach.ware resolution: -> not a bug stage: -> resolved status: languishing -> closed ___ Python tracker _

[issue15028] PySys_SetArgv escapes quotes in argv[]

2013-07-07 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +christian.heimes status: open -> languishing ___ Python tracker ___ ___ Python-bugs-list maili

[issue15028] PySys_SetArgv escapes quotes in argv[]

2012-06-07 Thread R. David Murray
R. David Murray added the comment: Could you please clarify the inputs and outputs. I can't tell from your description what exact byte string you are passing in from C++ or what exact string you are seeing on the Python side. For example, if: '--net-label-name=\'("DC1","eth1")\'' is the

[issue15028] PySys_SetArgv escapes quotes in argv[]

2012-06-07 Thread R.M.Bianchi
New submission from R.M.Bianchi : Embedding Python in C++ I saw that if I pass this string below to the PySys_SetArgv, as one of the command-line arguments passed to an embedded script: "--net-label-name='("DC1","eth1")'" PySys_Argv transforms it escaping the single quotes, and in the Python