diff options
author | Barry Warsaw <barry@python.org> | 2003-06-29 17:10:11 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2003-06-29 17:10:11 (GMT) |
commit | 883f22321a6e6ff7b265b8f90af9b8c306ca9632 (patch) | |
tree | 24162cc994f5b7c5f146359384618632a8d5b60c | |
parent | 89392c00055cedc3795ea13d20ef7b11a87081c5 (diff) | |
download | cpython-883f22321a6e6ff7b265b8f90af9b8c306ca9632.zip cpython-883f22321a6e6ff7b265b8f90af9b8c306ca9632.tar.gz cpython-883f22321a6e6ff7b265b8f90af9b8c306ca9632.tar.bz2 |
Added news about os.environ['PYTHONINSPECT'] = 'yes'
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. |