-
Sorry, I didn't pass the data correctly.
2009-11-01 15:53:03 UTC by andrewziem
-
Calling win32gui.GetOpenFileNameW with a unicode (German umlaut) title causes poor display of characters. Tested with Python 2.5.4 and pywin32-213.win32-py2.5.exe. I'll attach example code.
Interesting that shell.SHBrowseForFolder works OK with umlaut.
2009-11-01 05:43:57 UTC by andrewziem
-
mhammond committed patchset 4027 of module pywin32 to the Python for Windows extensions CVS repository, changing 2 files.
2009-10-15 05:31:26 UTC by mhammond
-
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
2009-10-14 02:21:06 UTC by sf-robot
-
sounds reasonable - please consider sending a patch...
2009-09-29 10:00:08 UTC by mhammond
-
It is very difficult to redirect print statements when using win32com inside an application, and extra verbosity on the command line can confuse users. Please change to using the standard logging module for errors and warnings, as these can be managed more effectively. The print statement should at the least be changed to a sys.stderr write to match the other errors.
2009-09-29 09:38:24 UTC by igalboc
-
Hey good news! I used distribute v0.6.3 from http://pypi.python.org/pypi/distribute and gave it this URL: http://downloads.sourceforge.net/project/pywin32/pywin32/Build%20214/pywin32-214.win32-py2.6.exe?use_mirror=softlayer and it worked!
Here is the command line that I executed:
easy_install -v...
2009-09-28 17:24:45 UTC by zooko
-
mhammond committed patchset 4026 of module pywin32 to the Python for Windows extensions CVS repository, changing 3 files.
2009-09-27 12:04:31 UTC by mhammond
-
pywin32 has moved to datetime objects in Python 3.x, so differences are expected, particularly when printing dates and times. This was a design decision and can't be fixed.
2009-09-17 22:51:31 UTC by mhammond
-
Python 2.x and 3.x have different handling of pytime when you need to create a datetime object for COM from a python datetime object
Here is the example which can show you the difference in 2.x and 3.1
import pywintypes
import datetime
x = datetime.datetime(2009,1,1)
y = pywintypes.Time(x)
print(type(x),type(y))
2009-09-17 20:14:04 UTC by dmitryam