Added news about os.environ['PYTHONINSPECT'] = 'yes'

This commit is contained in:
Barry Warsaw 2003-06-29 17:10:11 +00:00
parent 89392c0005
commit 883f22321a
1 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,11 @@ What's New in Python 2.3 beta 2?
Core and builtins
-----------------
- 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.