Re: Windows - Need to process quotes in string...

2005-11-02 Thread Tim Roberts
>Ernesto enlightened us with: >> >>I'm trying to use a $ delimeter, but it doesn't seem to work. Here is >>the code: >> >> >>launchWithoutConsole("devcon.exe",d'$enable >> "@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&"$) Where did you get the idea that this would work? I can't find any referen

Re: Windows - Need to process quotes in string...

2005-11-02 Thread Ernesto
Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: Windows - Need to process quotes in string...

2005-10-31 Thread Francesco Bochicchio
Il Mon, 31 Oct 2005 07:18:31 -0800, Ernesto ha scritto: > I'm trying to use a $ delimeter, but it doesn't seem to work. Here is > the code: > > > launchWithoutConsole("devcon.exe",d'$enable > "@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&"$) > > I want to send the string parameter: > > enable

Re: Windows - Need to process quotes in string...

2005-10-31 Thread Sybren Stuvel
Ernesto enlightened us with: > I'm trying to use a $ delimeter Why? > I want to send the string parameter: > > enable "@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&" launchWithoutConsole("devcon.exe" 'enable "@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&"') Or, if you should also be able to

Windows - Need to process quotes in string...

2005-10-31 Thread Ernesto
I'm trying to use a $ delimeter, but it doesn't seem to work. Here is the code: launchWithoutConsole("devcon.exe",d'$enable "@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&"$) I want to send the string parameter: enable "@USB\VID_0403&PID_6010&MI_00\7&15E4F68&1&" to the program devcon. The