[Python-checkins] python/dist/src/Misc NEWS,1.797,1.798

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Sun, 29 Jun 2003 10:10:13 -0700


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

Modified Files:
	NEWS 
Log Message:
Added news about os.environ['PYTHONINSPECT'] = 'yes'


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.797
retrieving revision 1.798
diff -C2 -d -r1.797 -r1.798
*** NEWS	29 Jun 2003 16:56:38 -0000	1.797
--- NEWS	29 Jun 2003 17:10:11 -0000	1.798
***************
*** 13,16 ****
--- 13,21 ----
  -----------------
  
+ - A program can now set the environment variable PYTHONINSPECT to some
+   string value in Python, and cause the interpreter to enter the
+   interactive prompt at program exit, as if Python had been invoked
+   with the -i option.
+ 
  - list.index() now accepts optional start and stop arguments.  Similar
    changes were made to UserList.index(). SF feature request 754014.