On May 1, 2007, at 8:36 PM, Elliot Peele wrote:

> Why does os.path.join('/foo', '/bar') return '/bar' rather than
> '/foo/bar'? That just seems rather counter intuitive.

It's the leading slash in '/bar'.  os.path.join('/foo', 'bar')  
returns '/foo/bar'.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to