os.path.normpath bug?

Michael Hoffman cam.ac.uk at mh391.invalid
Thu Jun 14 16:35:53 EDT 2007


billiejoex wrote:
> Hi there,
> I've noticed that os.path.normpath does not collapse redundant
> separators if they're located at the beginning of the string:
> 
>>>> print os.path.normpath('/a//b//c')
> \a\b\c
>>>> print os.path.normpath('//a//b//c')
> \\a\b\c
> 
> Is it intentional or is it a bug?

Intentional.

http://en.wikipedia.org/wiki/Path_(computing)#Universal_Naming_Convention
-- 
Michael Hoffman



More information about the Python-list mailing list