[Python-checkins] cpython (2.7): Add NEWS items for Idle patches already in 2.7.9rc1.

terry.reedy python-checkins at python.org
Mon Dec 1 23:02:10 CET 2014


https://hg.python.org/cpython/rev/66a261969c57
changeset:   93686:66a261969c57
branch:      2.7
parent:      93681:cc744bf70cf6
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Mon Dec 01 16:59:02 2014 -0500
summary:
  Add NEWS items for Idle patches already in 2.7.9rc1.

files:
  Misc/NEWS |  19 ++++++++++++++++++-
  1 files changed, 18 insertions(+), 1 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -122,7 +122,7 @@
 
 - Issue #22776: Brought excluded code into the scope of a try block in
   SysLogHandler.emit().
- 
+
 - Issue #17381: Fixed ranges handling in case-insensitive regular expressions.
 
 - Issue #19329: Optimized compiling charsets in regular expressions.
@@ -317,6 +317,23 @@
 IDLE
 ----
 
+- 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 #22221: IDLE now ignores the source encoding declaration on the second
   line if the first line contains anything except a comment.
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list