[python-win32] win32 version

2005-07-27 Thread Neil Benn
Hello, If I have an installed instance of win32 et al, is there a way to get the version number that is installed on a box (preferably without having to start python up - ie is it written in a text file somewhere in the install?). Cheers, Neil -- Neil Benn Senior Automation Engi

Re: [python-win32] win32 version

2005-07-27 Thread Gabriel Genellina
At Wednesday 27/7/2005 05:46, Neil Benn wrote: > If I have an installed instance of win32 et al, is there a way >to get the version number that is installed on a box (preferably >without having to start python up - ie is it written in a text file >somewhere in the install?). You could

Re: [python-win32] win32 version

2005-07-27 Thread Neil Benn
Gabriel Genellina wrote: > At Wednesday 27/7/2005 05:46, Neil Benn wrote: > >> If I have an installed instance of win32 et al, is there a way >> to get the version number that is installed on a box (preferably >> without having to start python up - ie is it written in a text file >> som

[python-win32] Monitoring CPU Usage

2005-07-27 Thread Tim Howgego
I'm trying to use Python to monitor CPU usage (simple percentage) on Windows 98. First thoughts were to use win32pdh (code similar to http://mail.python.org/pipermail/python-win32/2002-April/000347.html ), but pdh.dll is not available for Windows 98. Second thought was to use WMI. WMI isn't na

[python-win32] GetMessage/PeekMessage not defined AND Building win32all with MinGW

2005-07-27 Thread Justin Johnson
Hi,   I recently noticed that GetMessage and PeekMessage aren't wrapped in any of the win32* modules, although PostThreadMessage is.  I submitted https://sourceforge.net/tracker/index.php?func=detail&aid=1246207&group_id=78018&atid=551954 to document the problem.  Does anyone know of some special

Re: [python-win32] win32 version

2005-07-27 Thread Mark Hammond
> If I have an installed instance of win32 et al, is there a way > to get the version number that is installed on a box (preferably > without having to start python up - ie is it written in a text file > somewhere in the install?). In build 205 and later, there will be a pywin32.version

Re: [python-win32] GetMessage/PeekMessage not defined AND Buildingwin32all with MinGW

2005-07-27 Thread Mark Hammond
As it turns out these have been added to win32gui (all except PeekMessage - but I just added that). Let me know the version of Python you are using and I will mail you a new win32gui. I can't answer the MinGW question as I have never used it - but would be happy to accept patches to setup.py to m

[python-win32] OT: how to get function signature

2005-07-27 Thread Amit Upadhyay
Hi, I was working on a dir like function that gives more information than the usual dir, but I am not satisfied with the way I get function arguments for callable members of an object. Take a look at it here: http://nerdierthanthou.nfshost.com/2005/07/mdir-for-python.html. I have seen PythonWin s