[Distutils] Windows absolute paths

Pearu Peterson pearu@cens.ioc.ee
Mon Apr 15 15:47:09 2002


On Mon, 15 Apr 2002, Peter Bienstman wrote:

> > > The following works, because setup.py lives in d:\bar
> > >
> > > ../foo
> > >
> > > None of these work:
> > >
> > > D:/foo
> > > /D:/foo
> > > //D:/foo
> > > D:\foo
> > > \D:\foo
> > > \\D:\foo

Have you tried double / or \ after the drive letter:

D:\\foo
D://foo

?

Pearu