Good stuff. Some suggestions:

>         def joinpath(self, *args): ...
I suggest append() or extend() as join*() sort of suggest join() as 
provided by strings, which does something quite different

>         def splitall(self): ...
and this may renamed split(), as it is quite similar to split() as 
provided by strings

>         # Properties about the path.
>         parent, name, namebase, ext, drive, uncshare[1]
so we can drop basename(), dirname(), splitdrive(), and splitext()

>         def dirs(self, pattern = None): ...
>         def files(self, pattern = None): ...
can we add others()? (sockets, pipes, block and character devices)

--eric

_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to