[python-win32] RE: ANNOUNCE: Build 201 of the Python for Windowsextensions uploaded.

Mark Hammond mhammond at skippinet.com.au
Mon Apr 26 01:06:13 EDT 2004


Roger Upole has noticed a minor bug in build 201 - Pythonwin will generate a
traceback if you attempt to print unicode characters.

I have re-packaged the build, and the new version is now on sourceforge.
The "File Release" text mentions the screw-up, and re-brands it as build
"201.1".  The filenames for download are still the same.

If you already downloaded build 201 before the new release, you may find it
simpler to change the single .py file affected by the change.

The change is in pythonwin\pywin\framework\winout.py.  Both lines 441 and
446 read:
  if not isinstance(type, UnicodeType):
They both should change to:
  if not isinstance(item, UnicodeType):
Note the indentation is different for both lines, and should remain
unchanged.

My apologies for the inconvenience,

Mark.




More information about the Python-win32 mailing list