[Distutils] bdist_wininst updated in CVS repository

Jeremy Hylton jeremy@beopen.com
Thu Sep 7 12:17:01 2000


>>>>> "AMK" == Andrew Kuchling <akuchlin@mems-exchange.org> writes:

  AMK> On Thu, Sep 07, 2000 at 06:06:16PM +0200, Thomas Heller wrote:
  >>- A small bug:
  >>    raise DistutilsPlatformError ("...")
  >>  instead of
  >>    raise DistutilsPlatformError, ("...")

  AMK> Are you sure that is in fact a bug?  If DistutilsPlatformError
  AMK> is a class-based exception, the first form is quite legal.

Except that the space between DisutilsPlatformError and the open paren
is bad Python style.

Jeremy