[Distutils] WinNT and distutils

Thomas Heller thomas.heller@ion-tof.com
Wed, 2 Feb 2000 19:13:03 +0100


[I wrote]
> > +     try:
> > +         import win32api
> > +         import win32con
> > +     except ImportError:
> > +         return None
> This should be
>         except ImportError:
>             return ()
Sorry, correct is:
          except ImportError:
              return []