Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
88 views

Python - Print on stdout from .pyw

I have a python program with a wxpython GUI and some command line parameters. I generate a single windows executable with py2exe. I don't want to have a command line window in the background, so ...
2
votes
2answers
412 views

Running a process in pythonw with Popen without a console

I have a program with a GUI that runs an external program through a Popen call: p = subprocess.Popen("<commands>" , stdout=subprocess.PIPE , stderr=subprocess.PIPE , cwd=os.getcwd()) ...
1
vote
3answers
43 views

Weird issue with multiple Python installations on Windows

I have 3 versions of Python (2.5, 2.7, 3.2) installed on a Windows machine, 2.5 being the default one (first in PATH and default for open action). Now the weird thing appear when I run a python ...
1
vote
1answer
215 views

BaseHTTPRequestHandler hangs when being run by pythonw.exe 3.1

The following code works fine with python.exe but fails with pythonw.exe. I'm using Python 3.1 on Windows 7. from http.server import BaseHTTPRequestHandler, HTTPServer class ...
0
votes
1answer
40 views

Controlling location of Pmw.MessageDialog (and other similar widgets)

Python newbie here, newer still to Pmw: I have the following method defined for showing a Pmw MessageDialog box, and it works as expected and the result value is returned and posted in edit1, which ...
0
votes
3answers
211 views

Python code problem, application has been destroyed Tcl error

I am making a Tkinter GUI to do nothing except call images - and of course, I have struggled to find decent tkinter documentation all along. There is a line of my code which cannot seem to do as ...
0
votes
1answer
195 views

Python freezes after computer sleep/hibernate

I have a python script that is running in the background with pythonw. If I close my laptop, it goes into sleep mode. and when I open my laptop, my program has little functionality and freezes after a ...
0
votes
1answer
119 views

Determine if a script is running in pythonw?

I would like to redirect stderr and stdout to files when run inside of pythonw. How can I determine whether a script is running in pythonw or in python?