diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-12-06 01:51:08 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-12-06 01:51:08 (GMT) |
commit | 4becc38ad15d4e066f1b141cada8f5d76797cae4 (patch) | |
tree | 53e64530a3f1a9eac9b09b754a086e43ceab6887 /Lib/idlelib | |
parent | 7eda940e1f693ea419a07713fe1db9d07cbf92d0 (diff) | |
parent | 81f01fb104683fdfd099b78e5b7b1793a36458c3 (diff) | |
download | cpython-4becc38ad15d4e066f1b141cada8f5d76797cae4.zip cpython-4becc38ad15d4e066f1b141cada8f5d76797cae4.tar.gz cpython-4becc38ad15d4e066f1b141cada8f5d76797cae4.tar.bz2 |
Update idlelib/NEWS.txt.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/NEWS.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 231d20e..828142c 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,6 +1,26 @@ What's New in IDLE 3.5.0? ========================= +- Issue #16893: Update Idle doc chapter to match current Idle and add new + information. + +- Issue #3068: Add Idle extension configuration dialog to Options menu. + Changes are written to HOME/.idlerc/config-extensions.cfg. + Original patch by Tal Einat. + +- Issue #16233: A module browser (File : Class Browser, Alt+C) requires a + editor window with a filename. When Class Browser is requested otherwise, + from a shell, output window, or 'Untitled' editor, Idle no longer displays + an error box. It now pops up an Open Module box (Alt+M). If a valid name + is entered and a module is opened, a corresponding browser is also opened. + +- Issue #4832: Save As to type Python files automatically adds .py to the + name you enter (even if your system does not display it). Some systems + automatically add .txt when type is Text files. + +- Issue #21986: Code objects are not normally pickled by the pickle module. + To match this, they are no longer pickled when running under Idle. + - Issue #17390: Adjust Editor window title; remove 'Python', move version to end. |