]> granicus.if.org Git - python/commitdiff
Added news about os.environ['PYTHONINSPECT'] = 'yes'
authorBarry Warsaw <barry@python.org>
Sun, 29 Jun 2003 17:10:11 +0000 (17:10 +0000)
committerBarry Warsaw <barry@python.org>
Sun, 29 Jun 2003 17:10:11 +0000 (17:10 +0000)
Misc/NEWS

index b53d309a0556ff1570caa2f13a601bc3f06c02d6..8c749bb4106576b8e4770f914de31e5aabc5cab6 100644 (file)
--- 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.