Re: adding a path module to stdlib

2005-03-18 Thread Michael Hoffman
Alia Khouri wrote: This may have been discussed ad nauseaum before, but every time I use os.path manipulations I miss something like Jason Orrendorf's path.py being in the standard library. [http://www.jorendorff.com/articles/python/path/] That is a great library. I wrote a distutils setup.py for i

adding a path module to stdlib

2005-03-18 Thread Alia Khouri
This may have been discussed ad nauseaum before, but every time I use os.path manipulations I miss something like Jason Orrendorf's path.py being in the standard library. [http://www.jorendorff.com/articles/python/path/] Ruby has it: require 'pathname' path = Pathname.new("/tmp/f.log") What are