Собственно, вопрос в этом и состоит. Нужно запустить питоновский скрипт в отдельном процессе и задать ему имя, отличное от имени “python.exe *32”.
В документации читаю
“When executable is given, the first item in the args sequence is still treated by most programs as the command name, which can then be different from the actual executable name. On Unix, it becomes the display name for the executing program in utilities such as ps.”
делаю
>>> p = subprocess.call(["AAA", "tt.py"], executable="python.exe")
Подскажите, как это лучше сделать в виндоус.
Windows 7; python 2.6