summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b53d309..8c749bb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.