klausfpga schrieb:
> On Oct 29, 11:25 am, Rüdiger Ranft <_r...@web.de> wrote:
> Thanks Ruediger,
>
> I'll try that immediately tomorrow, when working again on a windows
> host.
>
> Good to know, that the Python API supports this.
> though this feature was n
Maxim Khitrov schrieb:
> 1. I don't think cx_freeze supports single exe. I haven't even been
> able to get it to append the generated library.zip file to the
> executable using documented options. Other things like .pyd files
> always seem to be separate. At the same time, singe executables
> gene
klausfpga schrieb:
> Hi,
>
> I have a Python script which wants to start a subprocess and wait for
> it to finish.
>
> However I would like to have NO command window popping up during
> execution.
You need to specify the hide parameter for windows.
import subprocess
kwargs = {}
if subprocess.ms
Stef Mientki schrieb:
> By making use of the one time login on windows,
> I'm not sure, but I guess the user environment variable "USER" should
> hold the vald user,
> which has probably a one-to-one relation with the SID
Environment variables are *very* easy to forge. But since you use
windows,
Chris Rebert schrieb:
> On Wed, Apr 22, 2009 at 4:50 AM, Rüdiger Ranft <_r...@web.de> wrote:
>> Hi all,
>>
>> I want to generate some methods in a class using setattr and lambda.
>> Within each generated function a name parameter to the function is
>> repla
Hi all,
I want to generate some methods in a class using setattr and lambda.
Within each generated function a name parameter to the function is
replaced by a string constant, to keep trail which function was called.
The problem I have is, that the substituted name parameter is not
replaced by the
Diez B. Roggisch schrieb:
> Rüdiger Ranft schrieb:
>> Hi all,
>>
>> I need to call some programms and catch their stdout and stderr streams.
>> While the Popen class from subprocess handles the call, I get the
>> results of the programm not until the programm fin
Hi all,
I need to call some programms and catch their stdout and stderr streams.
While the Popen class from subprocess handles the call, I get the
results of the programm not until the programm finishes. Since the
output of the programm is used to generate a progress indicator, I need
a way to acc