[Python-ideas] PEP 428 - object-oriented filesystem paths

Greg Ewing greg.ewing at canterbury.ac.nz
Sun Oct 7 01:22:32 CEST 2012


Mathias Panzenböck wrote:
> Would there be something like this:
> 
>  >>> prefix.join("some","sub","path")

Using a / operator, this would be

    prefix / "some" / "sub" / "path"

-- 
Greg



More information about the Python-ideas mailing list