[Python-checkins] python/dist/src/Misc NEWS,1.661,1.662

aimacintyre@users.sourceforge.net aimacintyre@users.sourceforge.net
Mon, 17 Feb 2003 01:20:31 -0800


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv12762

Modified Files:
	NEWS 
Log Message:
Patch 686397:
move definition of platform dependent path related variables from os.py
to platform dependent path modules (ntpath, etc).



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.661
retrieving revision 1.662
diff -C2 -d -r1.661 -r1.662
*** NEWS	16 Feb 2003 23:00:53 -0000	1.661
--- NEWS	17 Feb 2003 09:20:23 -0000	1.662
***************
*** 225,228 ****
--- 225,234 ----
  -------
  
+ - the platform dependent path related variables sep, altsep, extsep,
+   pathsep, curdir, pardir and defpath are now defined in the platform
+   dependent path modules (e.g. ntpath.py) rather than os.py.  These
+   variables continue to be available via os.path (see 
+   <http://www.python.org/sf/680789>).
+ 
  - array.array was added to the types repr.py knows about (see
    <http://www.python.org/sf/680789>).