Re: os.sep and os.path.sep

2007-09-10 Thread Gabriel Genellina
En Sun, 09 Sep 2007 12:48:38 -0300, billiejoex <[EMAIL PROTECTED]> escribi�: import os hasattr(os, 'sep') > True hasattr(os.path, 'sep') > True > > By chance I noticed it. > Are there differences (I think not...)? > IMHO, if there are no differences os.path.sep should be removed sin

Re: os.sep and os.path.sep

2007-09-09 Thread O.R.Senthil Kumaran
* billiejoex <[EMAIL PROTECTED]> [2007-09-09 08:48:38]: > >>> import os > >>> hasattr(os, 'sep') > True > >>> hasattr(os.path, 'sep') > True > > By chance I noticed it. > Are there differences (I think not...)? > IMHO, if there are no differences os.path.sep should be removed since > it may be co