[Python-checkins] CVS: python/dist/src/Misc NEWS,1.297,1.298

Guido van Rossum gvanrossum@users.sourceforge.net
Wed, 24 Oct 2001 13:51:46 -0700


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

Modified Files:
	NEWS 
Log Message:
Note updated RISCOS port.  Remove reference in the 2.1 release notes
to os.extsep -- that variable actually didn't exist in that release!


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.297
retrieving revision 1.298
diff -C2 -d -r1.297 -r1.298
*** NEWS	2001/10/23 01:59:54	1.297
--- NEWS	2001/10/24 20:51:44	1.298
***************
*** 21,24 ****
--- 21,29 ----
    permanent memory leaks (provided garbage collection is enabled).
  
+ - os.extsep -- a new variable needed by the RISCOS support.  It is the
+   separator used by extensions, and is '.' on all platforms except
+   RISCOS, where it is '/'.  There is no need to use this variable
+   unless you have a masochistic desire to port your code to RISCOS.
+ 
  Tools/Demos
  
***************
*** 29,32 ****
--- 34,39 ----
  New platforms
  
+ - Updated RISCOS port by Dietmar Schwertberger.
+ 
  Tests
  
***************
*** 1447,1454 ****
    Schwertberger!  See RISCOS/README for more information -- it seems
    that because of the bizarre filename conventions on RISCOS, no port
!   to that platform is easy.  Note that the new variable os.endsep is
!   silently supported in order to make life easier on this platform,
!   but we don't advertise it because it's not worth for most folks to
!   care about RISCOS portability.
  
  
--- 1454,1458 ----
    Schwertberger!  See RISCOS/README for more information -- it seems
    that because of the bizarre filename conventions on RISCOS, no port
!   to that platform is easy.