[python-win32] Unable to build .msi package for pywin32

2011-12-15 Thread Muhammad Bashir Al-Noimi
Hi All, I forced to use msi installation package because of network needs so I tried to create msi by bdist_msi but it didn't work correctly because of ValueError: invalid version number '216' Could you please help me to build msi packa

Re: [python-win32] win32com and the GIL

2011-12-15 Thread Mark Hammond
On 13/12/2011 1:22 PM, Peter Fraser wrote: Hello Can win32com be made to release the GIL when it calls into COM components? Presumably it doesn't do this by default . It does do it by default and there is no way to have it *not* do it. I'm calling an apartment threaded COM component (VB6) an

Re: [python-win32] manifest "Microsoft.Windows.Common-Controls" version="6.0.0.0" => strange problem with pywin32 build 216 ?

2011-12-15 Thread Mark Hammond
On 19/11/2011 3:23 AM, Robert wrote: In C:\Python23 and C:\Python26 installations there are python(s).exe.manifest files which contain '"Microsoft.Windows.Common-Controls" version="6.0.0.0"' (see attached/below) With pywin32 build 216 (was not in 212; and 214 I guess) win32ui apps, which are sta

Re: [python-win32] python-win32 Digest, Vol 104, Issue 14

2011-12-15 Thread Mark Hammond
On 22/11/2011 2:10 PM, 陈智宏 wrote: http://sourceforge.net/tracker/?func=detail&aid=2831327&group_id=78018&atid=551954 UTC / Local time break pythonwin for Python32. A lot of function does not work. Simple throws

Re: [python-win32] addin fails to load the first time after login

2011-12-15 Thread Mark Hammond
I'm afraid I can't guess without a traceback. Try registering your addin with --debug and then run "python -m win32traceutil" - if you are luck you will also see the traceback there. Mark On 24/11/2011 8:09 AM, Christian K. wrote: Hi, I am observing a strange behaviour of two python com-ser

Re: [python-win32] Setting a 64bit FILETIME PT_SYSTIME property using pywin32's SetProps()

2011-12-15 Thread Mark Hammond
Attempting to pass an integer will assume the int is a regular "unix timestamp" and pywin32 will do the conversions as necessary. So there should be no need to convert it to a 64bit FILETIME integer. You should also find that passing a datetime object directly works, even in py2k builds - pyw