Tim Mitchell wrote:
> Hi,
> 
> A quick question:
> Is there any way for a python script to know if it's being executed by a 
> debug build of python (python_d.exe) instead of python?
> 
> Thanks
> Tim
> 
Not sure what this returns in Windows as I run Linux but this returns to 
namer of the python executable for my setup - maybe its what you want.

import sys
print sys.executable

- will print out the name of the python executable.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to