diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2003-05-17 03:15:48 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2003-05-17 03:15:48 (GMT) |
commit | a80d57c41dfcfd7ae2b45b4987b28fe47ffa9dfd (patch) | |
tree | 70c7bae5672309307f713f215f94c4799077b2ca /Lib/idlelib/NEWS.txt | |
parent | ab0053aa13951ad00a00c29467cc6b106725630b (diff) | |
download | cpython-a80d57c41dfcfd7ae2b45b4987b28fe47ffa9dfd.zip cpython-a80d57c41dfcfd7ae2b45b4987b28fe47ffa9dfd.tar.gz cpython-a80d57c41dfcfd7ae2b45b4987b28fe47ffa9dfd.tar.bz2 |
Noam Raphael's patch.
SF Patch 686254 "Run IDLEfork from any directory without set-up"
Allows IDLE to run when not installed and cwd is not the IDLE directory.
I took the liberty of moving it to the startup scripts since once IDLEfork
is again a part of Python it will be superfluous and I don't want it to
be forgotten. But it is very useful for those using IDLEfork standalone!
M CREDITS.txt
M NEWS.txt
M idle
M idle.py
M idle.pyw
Diffstat (limited to 'Lib/idlelib/NEWS.txt')
-rw-r--r-- | Lib/idlelib/NEWS.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index d24c34b9..26c1fda 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -7,15 +7,24 @@ What's New in IDLEfork 0.9b1? *Release date: XX-XXX-2003* +- Allow IDLE to run when not installed and cwd is not the IDLE directory + SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael + +- When a module is run from an EditorWindow: if its directory is not in + sys.path, prepend it. This allows the module to import other modules in + the same directory. Do the same for a script run from the command line. + - Interrupt the subprocess if it is running when the user attempts to restart the shell, run a module, or exit. - Improved exception reporting when running commands or scripts from the command line. +- Added a -n command line switch to start IDLE without the subprocess. + Removed the Shell menu when running in that mode. Updated help messages. + - Added a comment to the shell startup header to indicate when IDLE is not - using the subprocess. (For now, set PyShell.use_subprocess to False to run - in this mode.) + using the subprocess. - Restore the ability to run without the subprocess. This can be important for some platforms or configurations. (Running without the subprocess allows the |