[Python-checkins] r87122 - in python/branches/release27-maint: Mac/IDLE/config-extensions.def Misc/NEWS

ronald.oussoren python-checkins at python.org
Tue Dec 7 17:13:17 CET 2010


Author: ronald.oussoren
Date: Tue Dec  7 17:13:17 2010
New Revision: 87122

Log:
Fix for issue #10406: enable Rstrip extension on OSX

Without this patch the Rstrip extension for IDLE is not enabled on OSX,
while it is enabled on other platforms.

Patch by Ned Deily.


Modified:
   python/branches/release27-maint/Mac/IDLE/config-extensions.def
   python/branches/release27-maint/Misc/NEWS

Modified: python/branches/release27-maint/Mac/IDLE/config-extensions.def
==============================================================================
--- python/branches/release27-maint/Mac/IDLE/config-extensions.def	(original)
+++ python/branches/release27-maint/Mac/IDLE/config-extensions.def	Tue Dec  7 17:13:17 2010
@@ -86,3 +86,8 @@
 fgcolor=Black
 [CodeContext_bindings]
 toggle-code-context=
+
+[RstripExtension]
+enable=1
+enable_shell=0
+enable_editor=1

Modified: python/branches/release27-maint/Misc/NEWS
==============================================================================
--- python/branches/release27-maint/Misc/NEWS	(original)
+++ python/branches/release27-maint/Misc/NEWS	Tue Dec  7 17:13:17 2010
@@ -18,6 +18,9 @@
 
 - Issue #10107: Warn about unsaved files in IDLE on OSX.
 
+- Issue #10406: Enable Rstrip IDLE extension on OSX (just like on other
+  platforms).
+
 - Issue #10478: Reentrant calls inside buffered IO objects (for example by
   way of a signal handler) now raise a RuntimeError instead of freezing the
   current process.


More information about the Python-checkins mailing list