[Python-checkins] python/dist/src/Misc NEWS,1.665,1.666

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Wed, 19 Feb 2003 07:25:12 -0800


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

Modified Files:
	NEWS 
Log Message:
- sys.path[0] (the directory from which the script is loaded) is now
  turned into an absolute pathname, unless it is the empty string.
  (SF patch #664376, by Skip Montanaro.)


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.665
retrieving revision 1.666
diff -C2 -d -r1.665 -r1.666
*** NEWS	18 Feb 2003 23:32:47 -0000	1.665
--- NEWS	19 Feb 2003 15:24:36 -0000	1.666
***************
*** 13,16 ****
--- 13,20 ----
  -----------------
  
+ - sys.path[0] (the directory from which the script is loaded) is now
+   turned into an absolute pathname, unless it is the empty string.
+   (SF patch #664376.)
+ 
  - Finally fixed the bug in compile() and exec where a string ending
    with an indented code block but no newline would raise SyntaxError.