Re: [python-win32] How do I detect a 64 bit version of Windows?

2012-02-19 Thread Marc Hankin
Dear Gelonida: The following is a vbscript that will return the info you want. You might want to run it in a python subprocess. On Error Resume Next ' -- SCRIPT CONFIGURATION -- strComputer = "." ' e.g. rallen-srv01 ' -- END CONFIGURATION - set objWMIDateTime = CreateOb

Re: [python-win32] [ANN] pywin32 build 217 released.

2012-02-19 Thread Mark Hammond
On 20/02/2012 5:10 AM, luc.k wrote: Hi Marc, I recently encounterd some problems with pyTables en Pandas. (certain pyd files generated an "Import DLL"problem) After some research i came accross the folowing issues - http://bugs.python.org/issue4120 - http://bugs.python.org/issue7833 and It's

Re: [python-win32] How do I detect a 64 bit version of Windows?

2012-02-19 Thread Mark Hammond
On 19/02/2012 6:20 PM, Brian Curtin wrote: On Sat, Feb 18, 2012 at 21:11, Gelonida N wrote: On 02/18/2012 09:07 PM, Brian Curtin wrote: On Sat, Feb 18, 2012 at 13:22, Gremlin wrote: import platform platform.machine() That will return "AMD64" on 64 bit. I don't have a 32-bit machine availabl

Re: [python-win32] How do I detect a 64 bit version of Windows?

2012-02-19 Thread Gelonida N
On 02/19/2012 08:20 AM, Brian Curtin wrote: > On Sat, Feb 18, 2012 at 21:11, Gelonida N wrote: >> On 02/18/2012 09:07 PM, Brian Curtin wrote: >>> On Sat, Feb 18, 2012 at 13:22, Gremlin wrote: >>> >>> import platform >>> platform.machine() >>> >>> That will return "AMD64" on 64 bit. I don't have a

Re: [python-win32] [ANN] pywin32 build 217 released.

2012-02-19 Thread luc.k
Hi Marc, I recently encounterd some problems with pyTables en Pandas. (certain pyd files generated an "Import DLL"problem) After some research i came accross the folowing issues - http://bugs.python.org/issue4120 - http://bugs.python.org/issue7833 and It's unclear to me how this will be solve