Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Is there a way to tell if a script has been run by Pythonw.exe instead of Python.exe?

3 views
Skip to first unread message

Metalone

unread,
Oct 18, 2007, 5:56:16 PM10/18/07
to
In particular I want to know how to tell if reading and writing to the
console can occur.
Something like
sys.isConsolePresent()

Graham Dumpleton

unread,
Oct 18, 2007, 7:16:26 PM10/18/07
to

Have you tried:

sys.stdin.isatty()
sys.stdout.isatty()

Graham

michae...@gmail.com

unread,
Oct 18, 2007, 8:21:40 PM10/18/07
to

Look at sys.executable to find the name of the binary for the Python
interpreter.

BlueBird

unread,
Oct 19, 2007, 6:00:28 AM10/19/07
to

For a different problem, I have the following code. It might help:

def isrealfile(file):
"""
Test if file is on the os filesystem. This is necessary on windows,
when
starting python with pythonw.exe because in that case, the
stdout and stderr
are not real file and will create IOError when being flushed or when
more
than 4096 bytes are written.
"""
if not hasattr(file, 'fileno'): return False
try: tmp = os.dup(file.fileno())
except: return False
else: os.close(tmp); return True

class NullStream:
"""
A file like class that writes nothing
"""
def close(self): pass
def flush(self): pass
def write(self, str): pass
def writelines(self, sequence): pass

if not isrealfile(sys.stdout):
sys.stdout = NullStream()

if not isrealfile(sys.stderr):
sys.stderr = NullStream()


Metalone

unread,
Oct 19, 2007, 4:15:56 PM10/19/07
to
Thanks to all, I learned something in each post.
When using py2exe to build an executable sys.executable does not
provide the name of the python interpreter but the name of the
executable generated by py2exe.

Thomas Heller

unread,
Oct 19, 2007, 4:25:19 PM10/19/07
to pytho...@python.org
Metalone schrieb:

When running the executable built with py2exe you might be interested
in the variable sys.frozen; they are set to the string 'console' or 'windows', IIRC.

Thomas

0 new messages