deinstall (Was: Re: [Distutils] setup.py clean questions )

Thomas Heller thomas.heller@ion-tof.com
Fri Feb 16 10:42:00 2001


Jack Jansen:
> NONONONONO, please! Not even more unixisms in distutils! The names you use in 
> your setup script are URLs, not filenames. They look an awful lot like 
> filenames on Unix, but they _are_ URLs. This is important on the Mac, where 
> they're actually converted to the Mac filename convention. Using glob.glob on 
> URLs will prove to be a dissapointing exercise there...
> 

So how should they be written?

glob.glob(os.path.join('mx', 'Doc', '*.html'))

Thomas